@camunda8/sdk
Version:
[](https://www.npmjs.com/package/@camunda8/sdk)
31 lines (30 loc) • 1.04 kB
TypeScript
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';
/** @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: {
(...data: any[]): void;
(message?: any, ...optionalParams: any[]): void;
};
info: {
(...data: any[]): void;
(message?: any, ...optionalParams: any[]): void;
};
debug: {
(...data: any[]): void;
(message?: any, ...optionalParams: any[]): void;
};
};
ZBLogger: typeof ZBLogger;
ZBSimpleLogger: import("./lib/SimpleLogger").Logger;
};