1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00

fix KryptonConfig

This commit is contained in:
Sylvain 2021-04-13 11:33:15 +02:00
parent c0afe9419e
commit dbbf6b5f63

View File

@ -160,15 +160,16 @@ export interface KryptonFocus {
}
export interface KryptonConfig {
'kr-public-key': string,
'kr-language': string,
'kr-post-url-success': string,
'kr-get-url-success': string,
'kr-post-url-refused': string,
'kr-get-url-refused': string,
'kr-clear-on-error': boolean,
'kr-hide-debug-toolbar': boolean,
'kr-spa-mode': boolean
formToken?: string,
'kr-public-key'?: string,
'kr-language'?: string,
'kr-post-url-success'?: string,
'kr-get-url-success'?: string,
'kr-post-url-refused'?: string,
'kr-get-url-refused'?: string,
'kr-clear-on-error'?: boolean,
'kr-hide-debug-toolbar'?: boolean,
'kr-spa-mode'?: boolean
}
type DefaultCallback = () => void