@jname/vue-mobile-components
Version:
基于 Vue 3 + Vant 4 的移动端组件库
14 lines (13 loc) • 500 B
TypeScript
import { ApiConfig } from '../types';
declare const useOrganizationApi: ({ apiConfig }: {
apiConfig: ApiConfig;
}) => {
organizationCatch: import('vue').Ref<Map<string, true> & Omit<Map<string, true>, keyof Map<any, any>>, Map<string, true> | (Map<string, true> & Omit<Map<string, true>, keyof Map<any, any>>)>;
getOrganizationList: (params: any) => Promise<{
data: {
records: any[];
total: number;
};
}>;
};
export default useOrganizationApi;