mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
13 lines
371 B
TypeScript
13 lines
371 B
TypeScript
export interface Settings {
|
|
readonly baseUrl: string;
|
|
readonly application: {
|
|
readonly name: string;
|
|
readonly password: string;
|
|
};
|
|
readonly nesting?: boolean;
|
|
readonly sessionTimeout?: number;
|
|
readonly debug?: boolean;
|
|
readonly attributesParser?: (json: string) => any;
|
|
readonly attributesEncoder?: (obj: any) => string;
|
|
}
|