Files
sign/packages/lib/api/getDocuments.ts

8 lines
163 B
TypeScript
Raw Normal View History

export const getDocuments = (): Promise<Response> => {
2023-03-01 15:25:51 +01:00
return fetch("/api/documents", {
headers: {
"Content-Type": "application/json",
},
});
};