6 lines
249 B
TypeScript
6 lines
249 B
TypeScript
|
|
import * as z from 'zod/v4';
|
||
|
|
export declare const SvgOptimizerSchema: z.ZodObject<{
|
||
|
|
name: z.ZodString;
|
||
|
|
optimize: z.ZodCustom<(contents: string) => string | Promise<string>, (contents: string) => string | Promise<string>>;
|
||
|
|
}, z.core.$strip>;
|