oken-waas
Version:
Oken Wallet as a Service SDK
24 lines (23 loc) • 680 B
TypeScript
declare class DomainError extends Error {
info: any;
constructor(message: any, info?: any);
}
declare class UNAUTHORIZED extends DomainError {
}
declare class ALREADY_CREATED extends DomainError {
}
declare class SERVER_ERROR extends DomainError {
}
declare class INTEGRATION_ERROR extends DomainError {
}
declare class VALIDATION_ERROR extends DomainError {
}
declare const _default: {
ALREADY_CREATED: typeof ALREADY_CREATED;
SERVER_ERROR: typeof SERVER_ERROR;
UNAUTHORIZED: typeof UNAUTHORIZED;
VALIDATION_ERROR: typeof VALIDATION_ERROR;
INTEGRATION_ERROR: typeof INTEGRATION_ERROR;
fromAxios: (error: any) => never;
};
export default _default;