mirror of
https://github.com/Drop-OSS/drop.git
synced 2026-08-29 04:32:06 -04:00
14 lines
241 B
TypeScript
14 lines
241 B
TypeScript
|
|
import type { Component } from "vue";
|
||
|
|
|
||
|
|
export type NavigationItem = {
|
||
|
|
prefix: string;
|
||
|
|
route: string;
|
||
|
|
label: string;
|
||
|
|
};
|
||
|
|
|
||
|
|
export type QuickActionNav = {
|
||
|
|
icon: Component;
|
||
|
|
notifications?: Ref<number>;
|
||
|
|
action: () => Promise<void>;
|
||
|
|
};
|