mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-25 07:47:55 +01:00
11 lines
243 B
TypeScript
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;
|
|
}
|
|
}
|