mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 16:23:06 +10:00
8 lines
163 B
TypeScript
8 lines
163 B
TypeScript
export const getDocuments = (): Promise<Response> => {
|
|
return fetch("/api/documents", {
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
});
|
|
};
|