summary refs log tree commit diff
path: root/src/util/config/types/ClientConfiguration.ts
blob: 1adda1e205e4ba35b156c44930bec455cde4a6b3 (plain) (blame)
1
2
3
4
5
6
7
8
import { ClientReleaseConfiguration } from ".";

export class ClientConfiguration {
    //classes
    releases: ClientReleaseConfiguration = new ClientReleaseConfiguration();
    //base types
    useTestClient: boolean = true;
}