UNPKG

@camunda8/sdk

Version:

[![NPM](https://nodei.co/npm/@camunda8/sdk.png)](https://www.npmjs.com/package/@camunda8/sdk)

23 lines (22 loc) 901 B
export { Duration } from 'typed-duration'; export { BpmnParser } from './lib/BpmnParser'; import { ZBLogger } from './lib/ZBLogger'; import * as GrpcInterfaces from './lib/interfaces-grpc-1.0'; export * from './zb/ZBWorker'; export * from './zb/ZeebeGrpcClient'; export * from './zb/ZeebeRESTClient'; /** @namespace */ export declare const Types: { PartitionBrokerRole: typeof GrpcInterfaces.PartitionBrokerRole; PartitionBrokerHealth: typeof GrpcInterfaces.PartitionBrokerHealth; JOB_ACTION_ACKNOWLEDGEMENT: "JOB_ACTION_ACKNOWLEDGEMENT"; }; export declare const Logging: { ZBJsonLogger: { error: (message?: any, ...optionalParams: any[]) => void; info: (message?: any, ...optionalParams: any[]) => void; debug: (message?: any, ...optionalParams: any[]) => void; }; ZBLogger: typeof ZBLogger; ZBSimpleLogger: import("./lib/SimpleLogger").Logger; };