@typeform/api-client
Version:
JS SDK for Typeform API
17 lines (16 loc) • 539 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';
export { Typeform } from './typeform-types';
export declare const createClient: (args?: Typeform.ClientArg) => {
forms: Forms;
images: Images;
themes: Themes;
workspaces: Workspaces;
responses: Responses;
webhooks: Webhooks;
};