report.api.ts 169 B

12345
  1. import httpClient from "../utils/httpClient";
  2. export const reportApi = async (data: any): Promise<any> => {
  3. return await httpClient.post("/sdk/role/report", data);
  4. };