ink-cartridge
    Preparing search index...

    Type Alias SkipFn

    SkipFn: <C extends React.ComponentType<any>>(
        component: C,
        params: React.ComponentProps<C>,
        options?: SkipOptions,
    ) => void

    Function signature for navigating to a direct child of the current screen.

    Type Declaration

      • <C extends React.ComponentType<any>>(
            component: C,
            params: React.ComponentProps<C>,
            options?: SkipOptions,
        ): void
      • Type Parameters

        • C extends React.ComponentType<any>

          The component type (must be a React component).

        Parameters

        • component: C

          The child component (must be registered and a direct child).

        • params: React.ComponentProps<C>

          Props to pass to the component.

        • Optionaloptions: SkipOptions

          Optional navigation flags.

        Returns void