DefinitelyTyped/types/camunda-external-task-client-js/camunda-external-task-client-js-tests.ts
Maciek Stasiełuk 221b638fa2 Add types for camunda-external-task-client-js (#39128)
* Add typings for camunda-external-task-client-js

* Apply PR remarks

* Refactor to top-level declarations
2019-10-17 15:39:58 -07:00

6 lines
235 B
TypeScript

import { Client, Variables } from 'camunda-external-task-client-js';
new Client({ baseUrl: '' }); // $ExpectType Client
new Variables(); // $ExpectType Variables
new Variables().set('a', 42).getAllTyped(); // $ExpectType TypedValue[]