This commit is contained in:
Primakov Alexandr Alexandrovich
2025-03-11 18:18:05 +03:00
parent 4eb8ace12b
commit ab55c36ac5
2 changed files with 88 additions and 11 deletions

9
src/types/serviceMenu.d.ts vendored Normal file
View File

@@ -0,0 +1,9 @@
declare module 'https://admin.bro-js.ru/remote-assets/lib/serviceMenu/serviceMenu.js' {
const createServiceMenu: (options: any) => {
show: () => void;
hide: () => void;
update: () => void;
destroy: () => void;
};
export default createServiceMenu;
}