8cb202eb29
* Add JavaScript admin client to repository * Apply review feedback Co-authored-by: Stian Thorgersen <stian@redhat.com> --------- Co-authored-by: Stian Thorgersen <stian@redhat.com>
11 lines
263 B
TypeScript
11 lines
263 B
TypeScript
/**
|
|
* https://www.keycloak.org/docs-api/11.0/rest-api/#_keystoreconfig
|
|
*/
|
|
export default interface KeyStoreConfig {
|
|
realmCertificate?: boolean;
|
|
storePassword?: string;
|
|
keyPassword?: string;
|
|
keyAlias?: string;
|
|
realmAlias?: string;
|
|
format?: string;
|
|
}
|