UNPKG

monday-sdk-js

Version:

[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/mondaycom/monday-sdk-js/blob/master/LICENSE)   [![npm version](https://img.shields.io/npm/v/monday-sdk-js.svg?style=flat)](https://www.npmjs.com/package/monday-

25 lines (19 loc) 552 B
// Original Definitions were contributed by: Josh Parnham <https://github.com/josh-> import { MondayClientSdk } from "./client-sdk.interface"; import { MondayServerSdk } from "./server-sdk.interface"; export as namespace mondaySdk; declare function init( config?: Partial<{ clientId: string; apiToken: string; apiVersion: string; }> ): MondayClientSdk; declare function init( config?: Partial<{ token: string; apiVersion: string; }> ): MondayServerSdk; export { MondayClientSdk, MondayServerSdk }; export default init;