mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Add typings for camunda-external-task-client-js * Apply PR remarks * Refactor to top-level declarations
6 lines
235 B
TypeScript
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[]
|