Files
PolyMPR/defaults/interfaces.ts
T
Kevin FEDYNA b894930e12 Fix after MR
2025-01-15 15:57:08 +01:00

10 lines
207 B
TypeScript

export interface AppProperties {
name: string;
icon: string;
pages: Record<string, string>;
adminOnly: string[];
hint: string;
}
export type EmptyObject = Record<string | number | symbol, never>;