UNPKG

advint-user-admin

Version:

开箱即用的后台管理基础用户系统组件

11 lines (10 loc) 618 B
import { AxiosPromise } from 'axios'; import { DeptForm, DeptQuery, DeptVO } from './types'; export declare const listDept: (query?: DeptQuery) => any; export declare const listDeptAll: () => any; export declare const listDeptExcludeChild: (deptId: string | number) => AxiosPromise<DeptVO[]>; export declare const getDept: (deptId: string | number) => AxiosPromise<DeptVO>; export declare const treeDeptselect: () => AxiosPromise<DeptVO[]>; export declare const addDept: (data: DeptForm) => any; export declare const updateDept: (data: DeptForm) => any; export declare const delDept: (deptId: number | string) => any;