jsm-core
Version:
Core library for JSM project
12 lines (11 loc) • 377 B
TypeScript
type AllModels = string;
export declare const LEVELUP_ITEM_SHORTCUTS: {
[entity in AllModels]: string;
};
export declare const ITEM_SHORTCUTS: {
readonly [x: string]: string;
};
export type TShortcutsType = typeof ITEM_SHORTCUTS;
export type TShortcutEntities = keyof TShortcutsType;
export type TShortcutPrefix = (typeof ITEM_SHORTCUTS)[TShortcutEntities];
export {};