mirror of
https://github.com/documenso/documenso
synced 2026-04-28 00:17:17 +00:00
7 lines
163 B
TypeScript
7 lines
163 B
TypeScript
export const getDocuments = (): Promise<Response> => {
|
|
return fetch("/api/documents", {
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
});
|
|
};
|