UNPKG

@digitalpersona/services

Version:
17 lines (14 loc) 411 B
import { Policy } from '../../common'; import { PolicyTrigger } from './stepUp'; /** * An information about authentication policy. */ export interface PolicyInfo { /** A list of policy rules. * The policy is satisfied when **any** of the rules in the list is satisfied. */ policyList: Policy[]; /** A list of step-up triggers. */ policyTriggers: PolicyTrigger[]; }