upload new version

This commit is contained in:
Warunee Tamkoo 2023-11-07 11:17:13 +07:00
parent dd5a007ac1
commit ab5bc54f6a
47 changed files with 1881 additions and 0 deletions

View file

@ -0,0 +1,5 @@
interface DataOption {
id: string;
name: string;
}
export type { DataOption };

View file

@ -0,0 +1,7 @@
interface FormRef {
model: object | null;
useLocation: object | null;
[key: string]: any;
}
export type { FormRef };