fleet/frontend/services/entities/status_labels.ts

12 lines
300 B
TypeScript
Raw Normal View History

/* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import sendRequest from "services";
import endpoints from "utilities/endpoints";
export default {
getCounts: () => {
const { STATUS_LABEL_COUNTS } = endpoints;
return sendRequest("GET", STATUS_LABEL_COUNTS);
},
};