1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-24 23:37:51 +01:00
2022-01-26 17:16:24 +01:00

10 lines
214 B
TypeScript

import {MaterialIcons} from './icons';
export declare module OpenSTAManager {
export type Modules = Record<string, Module>;
export interface Module {
hasBootstrap?: boolean;
icon: MaterialIcons;
}
}