ink-cartridge
    Preparing search index...

    Interface ScenarioManagementProviderProps

    Props for the ScenarioManagementProvider component.

    interface ScenarioManagementProviderProps {
        children: ReactNode;
        defaultParams?: Record<string, unknown>;
        defaultScreen: ComponentType<any>;
        fullScreen?: boolean;
    }
    Index
    children: ReactNode

    The app tree rendered inside the provider.

    defaultParams?: Record<string, unknown>

    Initial props (optional; defaults to the template props registered with the component).

    defaultScreen: ComponentType<any>

    Initial screen component (required; must be registered via registerComponent).

    fullScreen?: boolean

    When true, the screen fills the full terminal height instead of the parent box.