mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-25 15:58:56 +01:00
- Fix problemi rilevati da ESLint (per togliere alcune regole commentate) - Spostati i tipi nella cartella typings - Aggiunti alcuni alias per la cartella resources
10 lines
207 B
TypeScript
10 lines
207 B
TypeScript
import {MaterialIcons} from './icons';
|
|
|
|
declare module OpenSTAManager {
|
|
export type Modules = Record<string, Module>;
|
|
export interface Module {
|
|
hasBootstrap?: boolean;
|
|
icon: MaterialIcons;
|
|
}
|
|
}
|