lovelacejs/lib/types/errType.d.ts
2022-06-19 18:41:21 -05:00

8 lines
132 B
TypeScript

export declare type errType = {
status: 'ERR' | 'OK';
error: {
label: string;
messages: string[];
};
};