@trumpf/ux.utils
    Preparing search index...

    Interface SharedStoreType

    interface SharedStoreType {
        getValue: <T>(name: string) => T;
        setValue: (name: string, value: any) => void;
        subscribe: (
            names: string | string[],
            callback: (args: SubscriberArgs) => void,
        ) => string;
        unsubscribe: (subscriberId: string) => void;
    }
    Index

    Properties

    getValue: <T>(name: string) => T
    setValue: (name: string, value: any) => void
    subscribe: (
        names: string | string[],
        callback: (args: SubscriberArgs) => void,
    ) => string
    unsubscribe: (subscriberId: string) => void