mirror of
https://github.com/documenso/documenso
synced 2026-05-04 13:58:25 +00:00
10 lines
141 B
TypeScript
10 lines
141 B
TypeScript
'use server';
|
|
|
|
export type CreateDocumentOptions = {
|
|
userId: number;
|
|
fileName: string;
|
|
};
|
|
|
|
export const createDocument = () => {
|
|
//
|
|
};
|