Move App into shell dir. Decouple ContextProviders. Improved type coverage for reducers

This commit is contained in:
SleepWalker
2019-12-09 09:07:07 +02:00
parent 5c70021456
commit 128f327ec4
10 changed files with 107 additions and 73 deletions

View File

@@ -33,7 +33,7 @@ type OauthRequestData = {
client_id: string;
redirect_uri: string;
response_type: string;
description: string;
description?: string;
scope: string;
prompt: string;
login_hint?: string;
@@ -44,7 +44,7 @@ export type OauthData = {
clientId: string;
redirectUrl: string;
responseType: string;
description: string;
description?: string;
scope: string;
prompt: string; // comma separated list of 'none' | 'consent' | 'select_account';
loginHint?: string;