@serwist/build
Version:
A module that integrates into your build process, helping you generate a manifest of local files that should be precached.
15 lines • 698 B
TypeScript
import { z } from "zod";
export declare const globPartial: z.ZodObject<{
globFollow: z.ZodDefault<z.ZodBoolean>;
globIgnores: z.ZodDefault<z.ZodArray<z.ZodString>>;
globPatterns: z.ZodDefault<z.ZodArray<z.ZodString>>;
globStrict: z.ZodDefault<z.ZodBoolean>;
templatedURLs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>>;
}, z.core.$strict>;
export declare const optionalGlobDirectoryPartial: z.ZodObject<{
globDirectory: z.ZodOptional<z.ZodString>;
}, z.core.$strict>;
export declare const requiredGlobDirectoryPartial: z.ZodObject<{
globDirectory: z.ZodString;
}, z.core.$strict>;
//# sourceMappingURL=glob.d.ts.map