@player-ui/player
Version:
13 lines • 418 B
TypeScript
import type { DataModelImpl } from "./model";
/**
* A model that does nothing
* Helpful for testing and other default DataModel applications
*/
export declare class NOOPDataModel implements DataModelImpl {
get(): undefined;
set(): never[];
delete(): void;
}
/** You only really need 1 instance of the NOOP model */
export declare const NOOP_MODEL: NOOPDataModel;
//# sourceMappingURL=noop-model.d.ts.map