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

11 lines
243 B
TypeScript

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