lovelacejs/lib/types/errType.d.ts
ysandler b1cb153885 Convert to TS
refact: convert to TS
2022-06-19 18:52:17 -05:00

8 lines
132 B
TypeScript

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