Files
veridian/app/types/settings.ts
T

7 lines
172 B
TypeScript

export interface SettingPage {
id: string;
label: string | Ref<string> | ComputedRef<string>;
icon: string;
component: Component;
sidebar?: Component;
}