UNPKG

@omnia/fx-spfx

Version:
14 lines (13 loc) 444 B
import { IMessageBusTopicPublishSubscriber } from '../../..'; export declare enum SpfxSettingsActionType { Get = 0, Set = 1 } export declare type SpfxWebPartSettingMsg = { action: SpfxSettingsActionType; callBack: (value?: any) => void; value?: any; }; export declare class InternalTopics { static spfxWebPartSettingTopic: (settingKey: string) => IMessageBusTopicPublishSubscriber<SpfxWebPartSettingMsg>; }