UNPKG

astro

Version:

Astro is a modern site builder with web best practices, performance, and DX front-of-mind.

22 lines (21 loc) 1.19 kB
import type { ComponentSlots } from '../slot.js'; import type { AstroComponentFactory, AstroFactoryReturnValue } from './factory.js'; import type { SSRResult } from '../../../../types/public/internal.js'; import type { RenderDestination } from '../common.js'; type ComponentProps = Record<string | number, any>; declare const astroComponentInstanceSym: unique symbol; export declare class AstroComponentInstance { [astroComponentInstanceSym]: boolean; private readonly result; private readonly props; private readonly slotValues; private readonly factory; private returnValue; constructor(result: SSRResult, props: ComponentProps, slots: ComponentSlots, factory: AstroComponentFactory); init(result: SSRResult): AstroFactoryReturnValue | Promise<AstroFactoryReturnValue>; render(destination: RenderDestination): void | Promise<void>; private renderImpl; } export declare function createAstroComponentInstance(result: SSRResult, displayName: string, factory: AstroComponentFactory, props: ComponentProps, slots?: any): AstroComponentInstance; export declare function isAstroComponentInstance(obj: unknown): obj is AstroComponentInstance; export {};