Skip to main content
Example
export interface UntrustedDataMembers {
  submittedFormData: { [key: string]: string | number | boolean | undefined | null } | null;
  authorizationParams: {
    login_hint?: string;
    screen_hint?: string;
    ui_locales?: string;
    [key: `ext-${string}`]: string;
  } | null;
}

Properties

authorizationParams
{ [key: ext-${string} ]: string; login_hint?: string; screen_hint?: string; ui_locales?: string; }
submittedFormData
{[key: string]: string | number | boolean | null | undefined; }