interface AstroComponentFactory {
    isAstroComponentFactory?: boolean;
    moduleId?: string;
    propagation?: PropagationHint;
    (result, props, slots): AstroFactoryReturnValue | Promise<AstroFactoryReturnValue>;
}

Properties

isAstroComponentFactory?: boolean
moduleId?: string
propagation?: PropagationHint