filebrowser/frontend/src/api/quota.ts

8 lines
149 B
TypeScript

import { fetchJSON } from "./utils";
export async function getQuota() {
return await fetchJSON<IQuota>(`/api/quota`, {
method: "GET",
});
}