interface.d.ts 247 B

12345678910111213
  1. import { StickyMenuActionType } from "~/types/enum/layout";
  2. interface AssociativeArray {
  3. [key: string]: any;
  4. }
  5. interface StickyMenuAction {
  6. type: StickyMenuActionType
  7. bgColor: string,
  8. iconClass: string,
  9. text: string,
  10. url?: string,
  11. }