Files
drop/composables/types.d.ts
2024-10-07 22:35:54 +11:00

13 lines
244 B
TypeScript

import type { Component } from "vue"
export type NavigationItem = {
prefix: string,
route: string,
label: string,
}
export type QuickActionNav = {
icon: Component,
notifications?: number,
action: () => Promise<void>,
}