@typeform/api-client
Version:
JS SDK for Typeform API
20 lines (19 loc) • 658 B
TypeScript
import { Forms } from './forms';
import { Images } from './images';
import { Themes } from './themes';
import { Workspaces } from './workspaces';
import { Responses } from './responses';
import { Webhooks } from './webhooks';
import { Typeform } from './typeform-types';
import { Insights } from './insights';
export { Typeform } from './typeform-types';
export { clientConstructor } from './create-client';
export declare const createClient: (args?: Typeform.ClientArg) => {
forms: Forms;
images: Images;
themes: Themes;
workspaces: Workspaces;
responses: Responses;
webhooks: Webhooks;
insights: Insights;
};