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

8 lines
149 B
TypeScript
Raw Normal View History

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