src/app/pages/models/config.ts
Properties |
| clientId |
Type : string
|
|
Defined in src/app/pages/models/config.ts:2
|
| config |
Type : [literal type]
|
|
Defined in src/app/pages/models/config.ts:4
|
| defaults |
Type : [literal type]
|
|
Defined in src/app/pages/models/config.ts:9
|
| scope |
Type : string
|
|
Defined in src/app/pages/models/config.ts:3
|
export class Config {
clientId: string;
scope: string;
config: [{
name: string;
value: string;
default: string;
}];
defaults: [
{
name: string;
value: string;
scope: string;
}
];
}