@turbox3d/command-manager
Version:
Large-scale productivity application command management library
6 lines (5 loc) • 323 B
TypeScript
import { CommandManager } from './CommandManager';
import { CommandType } from './create';
import { ComposedCommand, IDeclaredMap } from './type';
declare function install<M extends IDeclaredMap<CommandType> = IDeclaredMap<CommandType>>(declaredMap: M): ComposedCommand<CommandManager, CommandType, M>;
export { install };