onfido-sdk-ui
Version:
JavaScript SDK view layer for Onfido identity verification
23 lines (22 loc) • 654 B
TypeScript
import type { Theme } from '../capture-api/theming/Theme';
import type { Branding } from '../capture-api/theming/Branding';
export type V15Theme = Theme & {
/**
* @deprecated Internal type: Temporary until fonts are officially supported through the theming API
*/
googleFonts?: string[];
/**
* @deprecated Internal type: Temporary until fonts are officially supported through the theming API
*/
customFonts?: string[];
/**
* @deprecated Internal type only
*/
version?: 'v2' | 'v3';
/**
* @deprecated Internal type only
*/
branding?: Branding & {
legacy?: boolean;
};
};