mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
chore(FE-41): create BaseUom type
This commit is contained in:
@@ -1,10 +1,12 @@
|
||||
import { BaseMetadata } from '@/types/api/api-general';
|
||||
|
||||
export type Uom = BaseMetadata & {
|
||||
export type BaseUom = {
|
||||
id: number;
|
||||
name: string;
|
||||
};
|
||||
|
||||
export type Uom = BaseMetadata & BaseUom;
|
||||
|
||||
export type CreateUomPayload = {
|
||||
name: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user