UNPKG

soundcraft-ui-connection

Version:

Library for controlling the Soundcraft Ui series audio mixers

11 lines (10 loc) 343 B
/** * Store for facade objects * This is used to cache channels and others so that they don't need to be recreated all the time. * This is just a wrapper around a "Map" object, but we like to keep it abstract. */ export declare class ObjectStore { private store; get<T>(id: string): T; set(id: string, value: unknown): void; }