Member Junction
    Preparing search index...

    Interface IViewPropSheet<TConfig>

    Contract honored by a view-type configuration prop-sheet component.

    interface IViewPropSheet<TConfig = unknown> {
        config: TConfig;
        configChange: EventEmitter<TConfig>;
        entity: EntityInfo | null;
    }

    Type Parameters

    • TConfig = unknown

      the shape of the configuration object being edited

    Implemented by

    Index

    Properties

    config: TConfig

    The current configuration being edited.

    configChange: EventEmitter<TConfig>

    Emitted when the user changes the configuration.

    entity: EntityInfo | null

    The entity the configuration applies to.