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

11 lines
243 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;
2022-01-28 16:26:31 +01:00
moduleVendor: string;
}
}