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