mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-09 20:12:10 +10:00
20 lines
334 B
TypeScript
20 lines
334 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>;
|
|
};
|
|
|
|
export enum PlatformClient {
|
|
Windows = "Windows",
|
|
Linux = "Linux",
|
|
macOS = "macOS",
|
|
}
|