linkup-sdk
Version:
A Javascript Client SDK for the Linkup API
28 lines • 890 B
TypeScript
export type LinkupErrorDetail = {
field: string;
message: string;
};
export declare abstract class LinkupError extends Error {
}
export declare class LinkupInvalidRequestError extends LinkupError {
constructor(message: string);
}
export declare class LinkupNoResultError extends LinkupError {
constructor(message?: string);
}
export declare class LinkupAuthenticationError extends Error {
constructor(message?: string);
}
export declare class LinkupInsufficientCreditError extends LinkupError {
constructor(message?: string);
}
export declare class LinkupTooManyRequestsError extends LinkupError {
constructor(message?: string);
}
export declare class LinkupUnknownError extends LinkupError {
constructor(message: string);
}
export declare class LinkupFetchError extends LinkupError {
constructor(message?: string);
}
//# sourceMappingURL=errors.d.ts.map