mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 08:13:56 +10:00
13 lines
273 B
TypeScript
13 lines
273 B
TypeScript
export const signup = (source: any, data: any): Promise<Response> => {
|
|
return fetch("/api/auth/signup", {
|
|
body: JSON.stringify({
|
|
source: source,
|
|
...data,
|
|
}),
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
method: "POST",
|
|
});
|
|
};
|