UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

9 lines (8 loc) 281 B
import { ISubscribable } from './ISubscribable'; import { IDisposable } from './IDisposable'; export declare class BaseStore implements ISubscribable { private _callbacks; constructor(); subscribe(onChange: () => void): IDisposable; protected emitChange(): void; }