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