| 12345678910111213 |
- import { StickyMenuActionType } from "~/types/enum/layout";
- interface AssociativeArray {
- [key: string]: any;
- }
- interface StickyMenuAction {
- type: StickyMenuActionType
- bgColor: string,
- iconClass: string,
- text: string,
- url?: string,
- }
|