feat: add shared type

This commit is contained in:
Methapon2001 2024-04-03 10:39:31 +07:00
parent 38467d96bf
commit 85dae3c954

11
src/stores/types.ts Normal file
View file

@ -0,0 +1,11 @@
export type Pagination<T> = {
result: T;
page: number;
pageSize: number;
total: number;
};
export enum Status {
CREATED,
USED,
}