Files
PolyMPR/defaults/interfaces.ts
T
2025-01-15 15:43:52 +01:00

9 lines
191 B
TypeScript

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