kjelsrud.dev/node_modules/astro/dist/runtime/server/astro-component.d.ts
2023-07-19 21:31:30 +02:00

9 lines
402 B
TypeScript

import type { PropagationHint } from '../../@types/astro';
import type { AstroComponentFactory } from './render/index.js';
interface CreateComponentOptions {
factory: AstroComponentFactory;
moduleId?: string;
propagation?: PropagationHint;
}
export declare function createComponent(arg1: AstroComponentFactory | CreateComponentOptions, moduleId?: string): AstroComponentFactory;
export {};