mirror of
https://github.com/withastro/astro.git
synced 2025-01-06 22:10:10 -05:00
fix: zod import
This commit is contained in:
parent
c89cc7bf7d
commit
de75fc6d6b
1 changed files with 3 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
import type { AstroIntegration, AstroIntegrationHooks } from '../@types/astro.js';
|
||||
import { AstroError, AstroErrorData, errorMap } from '../core/errors/index.js';
|
||||
import { z } from '../../zod.mjs';
|
||||
import { z } from 'zod';
|
||||
|
||||
type AstroIntegrationSetupFn<Options extends z.ZodTypeAny> = (params: {
|
||||
name: string;
|
||||
|
@ -53,3 +53,5 @@ export const defineIntegration = <
|
|||
};
|
||||
};
|
||||
};
|
||||
|
||||
// export const defineIntegration = () => {};
|
||||
|
|
Loading…
Reference in a new issue