9 lines
205 B
TypeScript
9 lines
205 B
TypeScript
import { apiFetch } from "../fetch";
|
|
|
|
export async function fetchHasPendingDMs() {
|
|
const path = `/has_pending_dms`;
|
|
const result = await apiFetch<boolean>(path, { method: "GET" });
|
|
|
|
return result;
|
|
}
|