UNPKG

228 BTypeScriptView Raw
1/**
2 * Get (up to 2 characters) initials based on display name of the persona.
3 *
4 * @public
5 */
6export declare function getInitials(displayName: string | undefined | null, isRtl: boolean, allowPhoneInitials?: boolean): string;