1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-25 07:47:55 +01:00

10 lines
217 B
TypeScript
Raw Normal View History

import {MaterialIcons} from './icons';
2022-01-26 20:19:32 +01:00
export declare namespace OpenSTAManager {
export type Modules = Record<string, Module>;
export interface Module {
hasBootstrap?: boolean;
icon: MaterialIcons;
}
}