menu_util.d.ts 252 B

1234567
  1. import { Item } from './item.js';
  2. export declare namespace MenuUtil {
  3. function close(item: Item): void;
  4. function getActiveElement(item: Item): HTMLElement;
  5. function error(_error: Error, msg: string): void;
  6. function counter(): number;
  7. }