Merge branch 'dev' into feat/consultation-82
This commit is contained in:
No files matched your search
+12
-1
@@ -1,5 +1,16 @@
|
||||
export interface Device {
|
||||
import { type Base, genBase } from "./_base"
|
||||
|
||||
export interface Device extends Base {
|
||||
code: string
|
||||
name: string
|
||||
uom_code: string
|
||||
}
|
||||
|
||||
export function genDevice(): Device {
|
||||
return {
|
||||
...genBase(),
|
||||
code: '',
|
||||
name: '',
|
||||
uom_code: '',
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user