ixfx
    Preparing search index...

    Type Alias Panel<TNotifyArgs>

    type Panel<TNotifyArgs> = {
        dismount: () => void;
        id: string;
        label: string;
        mount: (parentEl: HTMLElement) => void;
        notify?: (name: string, args: TNotifyArgs) => void;
    }

    Type Parameters

    • TNotifyArgs
    Index

    Properties

    dismount: () => void
    id: string
    label: string
    mount: (parentEl: HTMLElement) => void
    notify?: (name: string, args: TNotifyArgs) => void

    Panel gets a notification

    Type declaration