hyperspace-desktop-client-w.../src/types/Config.tsx

25 lines
456 B
TypeScript
Raw Normal View History

2019-04-07 23:25:39 +02:00
export type Config = {
2019-04-08 20:31:20 +02:00
version: string;
location: string;
2019-04-07 23:25:39 +02:00
branding?: {
name?: string;
logo?: string;
background?: string;
};
2019-04-08 00:31:18 +02:00
developer?: string;
2019-04-07 23:25:39 +02:00
federated?: string;
registration?: {
defaultInstance?: string;
};
admin?: {
name?: string;
account?: string;
};
2019-04-08 20:31:20 +02:00
license: License;
2019-04-08 22:21:24 +02:00
respository?: string;
2019-04-08 20:31:20 +02:00
}
export type License = {
name: string;
url: string;
2019-04-07 23:25:39 +02:00
}