mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 15:53:02 +10:00
11 lines
141 B
TypeScript
11 lines
141 B
TypeScript
'use server';
|
|
|
|
export type CreateDocumentOptions = {
|
|
userId: number;
|
|
fileName: string;
|
|
};
|
|
|
|
export const createDocument = () => {
|
|
//
|
|
};
|