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

fix: 🐛 Moduli non esportati

This commit is contained in:
Maicol Battistini 2022-01-26 17:16:24 +01:00
parent f943efc9c6
commit 0a62b47b58
3 changed files with 3 additions and 2 deletions

View File

@ -7,7 +7,7 @@ import redaxios from 'redaxios';
import {registerSW} from 'virtual:pwa-register';
import {type Page} from './Components';
import {OpenSTAManager} from './typings/modules';
import {OpenSTAManager} from './typings';
import {
__ as translator,
showSnackbar

View File

@ -5,3 +5,4 @@
export * from './forms';
export * from './icons';
export * from './misc';
export * from './modules';

View File

@ -1,6 +1,6 @@
import {MaterialIcons} from './icons';
declare module OpenSTAManager {
export declare module OpenSTAManager {
export type Modules = Record<string, Module>;
export interface Module {
hasBootstrap?: boolean;