Variable FileStreamOptionsConst

FileStreamOptions: ZodObject<{
    flushInterval: ZodOptional<ZodNumber>;
    minBufferSize: ZodOptional<ZodNumber>;
    mkDir: ZodOptional<ZodBoolean>;
    sync: ZodOptional<ZodBoolean>;
}, "strip", ZodTypeAny, {
    flushInterval?: number;
    minBufferSize?: number;
    mkDir?: boolean;
    sync?: boolean;
}, {
    flushInterval?: number;
    minBufferSize?: number;
    mkDir?: boolean;
    sync?: boolean;
}> = ...

Schema for validating the structure of the FileStreamOptions.