mirror of
https://github.com/bitinflow/ui.git
synced 2026-03-13 13:45:59 +00:00
23 lines
508 B
TypeScript
23 lines
508 B
TypeScript
declare namespace _default {
|
|
const name: string;
|
|
function data(): {
|
|
primaryMenu: {
|
|
name: string;
|
|
icon: string;
|
|
to: string;
|
|
exact: boolean;
|
|
}[];
|
|
secondaryMenu: {
|
|
name: string;
|
|
icon: string;
|
|
to: string;
|
|
}[];
|
|
};
|
|
namespace methods {
|
|
function toggleMenu(): void;
|
|
function closeMenu(): void;
|
|
function toggleDarkMode(): void;
|
|
}
|
|
}
|
|
export default _default;
|