feat: เพิ่ม type ServiceAndProduct

This commit is contained in:
Net 2024-06-25 09:46:14 +07:00
parent bac791433c
commit f903bd1d8b

View file

@ -1,6 +1,10 @@
import { Status } from '../types';
import { Pagination } from 'src/stores/types';
export type ServiceAndProduct = (Service | ProductList) & {
type: 'product' | 'service';
};
export interface Service {
updatedAt: string;
updateBy: string;