0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-27 22:19:04 -05:00

[ci] format

This commit is contained in:
Luiz Ferraz 2024-07-17 15:59:44 +00:00 committed by astrobot-houston
parent 2e70741362
commit 1df7c8489e

View file

@ -3140,8 +3140,8 @@ export interface AstroIntegration {
name: string;
/** The different hooks available to extend. */
hooks: {
[K in keyof Astro.IntegrationHooks]?: Astro.IntegrationHooks[K]
} & Partial<Record<string, unknown>>
[K in keyof Astro.IntegrationHooks]?: Astro.IntegrationHooks[K];
} & Partial<Record<string, unknown>>;
}
export type RewritePayload = string | URL | Request;