UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

10 lines (9 loc) 339 B
import { IStoreKey } from './storeKey'; import { ISubscribable } from './ISubscribable'; export declare class StoreSet { private _stores; constructor(); add<T extends ISubscribable>(key: IStoreKey, value: T): StoreSet; getStore<T extends ISubscribable>(key: IStoreKey): T; merge(stores: StoreSet): StoreSet; }