@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 • 468 B
TypeScript
import { z } from "zod";
export declare const manifestEntry: z.ZodObject<{
integrity: z.ZodOptional<z.ZodString>;
revision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
url: z.ZodString;
}, "strict", z.ZodTypeAny, {
url: string;
integrity?: string | undefined;
revision?: string | null | undefined;
}, {
url: string;
integrity?: string | undefined;
revision?: string | null | undefined;
}>;
//# sourceMappingURL=manifestEntry.d.ts.map