@dolittle/sdk.common
Version:
Dolittle is a decentralized, distributed, event-driven microservice platform built to harness the power of events.
19 lines • 444 B
TypeScript
declare type InformationResult = {
type: 'information';
message: string;
};
declare type FailureResult = {
type: 'failure';
message: string;
fix?: string;
};
declare type ErrorResult = {
type: 'error';
error: Error;
};
/**
* Defines a result of building a client.
*/
export declare type ClientBuildResult = InformationResult | FailureResult | ErrorResult;
export {};
//# sourceMappingURL=ClientBuildResult.d.ts.map