antd-vue-dbthor 1.0.74 → 1.0.76
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/docs/apis/user.d.ts +9 -0
- package/dist/docs/config/antd-vue-dbthor.d.ts +2 -0
- package/dist/lib/index.es.js +1155 -1167
- package/dist/lib/index.es.js.gz +0 -0
- package/dist/lib/index.umd.js +11 -19
- package/dist/lib/index.umd.js.gz +0 -0
- package/dist/src/components/table/index.type.d.ts +30 -29
- package/dist/src/components/table/useCU.d.ts +1 -1
- package/dist/src/components/table/useDataSource.d.ts +5 -1
- package/dist/src/components/table/useDownloadTemplate.d.ts +2 -2
- package/package.json +9 -3
- package/dist/docs/apis/base.d.ts +0 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { AxiosResponse } from 'axios';
|
|
2
|
+
export declare const getUsersPageApi: (params?: any, config?: any) => Promise< AxiosResponse<any, any>>;
|
|
3
|
+
export declare const createUserApi: (data?: any, config?: any) => Promise< AxiosResponse<any, any>>;
|
|
4
|
+
export declare const updateUserApi: ({ id, ...data }: any, config?: any) => Promise< AxiosResponse<any, any>>;
|
|
5
|
+
export declare const deleteUserApi: ({ id }: any, config?: any) => Promise< AxiosResponse<any, any>>;
|
|
6
|
+
export declare const getUserDetailsApi: (params?: any, config?: any) => Promise< AxiosResponse<any, any>>;
|
|
7
|
+
export declare const downloadUserTemplateApi: (params?: any, config?: any) => Promise< AxiosResponse<any, any>>;
|
|
8
|
+
export declare const exportUsersApi: (params?: any, config?: any) => Promise< AxiosResponse<any, any>>;
|
|
9
|
+
export declare const importUserApi: (data?: any, config?: any) => Promise< AxiosResponse<any, any>>;
|