lovelacejs/src/types/errType.ts
Joshua Shoemaker ba47edec4a
Convert to TS
refact: convert to TS
2022-06-19 18:52:17 -05:00

7 lines
106 B
TypeScript

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