@d-id/client-sdk
Version:
d-id client sdk
10 lines (8 loc) • 482 B
TypeScript
import { Agent } from '../types';
type AgentType = 'clip_v2' | Agent['presenter']['type'];
export type PresenterType = 'v4' | 'v3-pro' | 'v2';
export declare const getAgentType: (presenter: Agent["presenter"]) => AgentType;
export declare const getPresenterType: (presenter: Agent["presenter"]) => PresenterType;
export declare const getPresenterIdentifier: (presenter: Agent["presenter"]) => string;
export declare const isStreamsV2Agent: (type: AgentType) => boolean;
export {};