UNPKG

@rsc-labs/nocto-plugin-system

Version:

Pluggable registry system for Nocto plugins

10 lines (9 loc) 292 B
import React from "react"; type NoctoSlotProps = { pluginId: string; name: string; runtimeProps?: Record<string, any>; fallback?: React.ReactNode; }; export declare const NoctoSlot: ({ pluginId, name, runtimeProps, fallback }: NoctoSlotProps) => React.JSX.Element; export {};