7 lines
106 B
TypeScript
7 lines
106 B
TypeScript
export type errType = {
|
|
status: 'ERR' | 'OK',
|
|
error: {
|
|
label: string,
|
|
messages: string[]
|
|
}
|
|
} |