@moxb/stellar-router-react
Version:
Stellar router: React widgets
10 lines (9 loc) • 562 B
TypeScript
/// <reference types="react" />
import { UIFragment, UIFragmentSpec } from '@moxb/react-html';
import { NavigableContent, StateSpace } from '@moxb/stellar-router-core';
import { LocationDependentAreaProps } from './LocationDependentAreaProps';
export declare type UIStateSpace<DataType = void> = StateSpace<UIFragment, UIFragmentSpec, DataType>;
export declare type NavigableUIContent = NavigableContent<UIFragmentSpec>;
export declare const LocationDependentArea: ((props: LocationDependentAreaProps<any>) => JSX.Element | null) & {
displayName: string;
};