UNPKG

coveo-search-ui

Version:

Coveo JavaScript Search Framework

15 lines (14 loc) 262 B
/** * Describe the identity of a user on the Coveo platform */ export interface IUserIdentity { /** * The name of the identity */ name: string; /** * The provider of the identity in the Coveo platform */ provider: string; type: string; }