@bestcodetools/api-node-base
Version:
BestCodeTools Node Base for Backend API
14 lines • 664 B
TypeScript
declare const CommandEventTypeSuccess = "success";
declare const CommandEventTypeFailure = "failure";
declare const CommandEventTypeBadRequest = "badRequest";
declare const CommandEventTypeNotImplemented = "notImplemented";
export declare const CommandEventTypeEnums: {
success: "success";
failure: "failure";
badRequest: "badRequest";
unauthorized: "unauthorized";
notImplemented: "notImplemented";
};
declare type CommandEventType = typeof CommandEventTypeSuccess | typeof CommandEventTypeFailure | typeof CommandEventTypeBadRequest | typeof CommandEventTypeNotImplemented;
export default CommandEventType;
//# sourceMappingURL=index.d.ts.map