astro
Version:
Astro is a modern site builder with web best practices, performance, and DX front-of-mind.
7 lines (6 loc) • 483 B
TypeScript
import type { SSRResult } from '../../../types/public/internal.js';
import type { RenderInstance } from './common.js';
import { type ComponentSlots } from './slot.js';
export declare function containsServerDirective(props: Record<string | number, any>): boolean;
export declare function renderServerIsland(result: SSRResult, _displayName: string, props: Record<string | number, any>, slots: ComponentSlots): RenderInstance;
export declare const renderServerIslandRuntime: () => any;