kjelsrud.dev/node_modules/astro/dist/runtime/server/astro-island.d.ts

5 lines
219 B
TypeScript
Raw Normal View History

2023-07-19 21:31:30 +02:00
type directiveAstroKeys = 'load' | 'idle' | 'visible' | 'media' | 'only';
declare const Astro: {
[k in directiveAstroKeys]?: (fn: () => Promise<() => void>, opts: Record<string, any>, root: HTMLElement) => void;
};