@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
14 lines (13 loc) • 433 B
TypeScript
import { AuthenticationValidationStatuses } from "./Enums";
import { GuidValue } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
export interface AuthState {
tenantId: GuidValue;
azureTenantId: GuidValue;
redirectUrl: string;
}
export interface TokenValidationResult {
authenticationUrl: string;
status: AuthenticationValidationStatuses;
tokenString?: string;
state?: AuthState;
}