@mondaycom/apps-cli
Version:
A cli tool to manage apps (and monday-code projects) in monday.com
9 lines (8 loc) • 345 B
TypeScript
export type ErrorParamsValues = string | number | Date | null | undefined;
export type ErrorParams = Record<string, ErrorParamsValues>;
export declare class HttpError extends Error {
code: number | null | undefined;
private description;
private title;
constructor(message: string, title?: string | null, code?: number | null);
}