ImportTemplateIntoProjectArgs
type ImportTemplateIntoProjectArgs = {
file: Buffer | NodeJS.ReadableStream | string | Blob;
fileName?: string;
projectId: string;
};
Arguments for importing a template file into an existing project.
See
Properties
file
file: Buffer | NodeJS.ReadableStream | string | Blob;
The template file content.
fileName?
optional fileName: string;
Optional file name (required for Buffer/Stream).
projectId
projectId: string;
The project ID to import into.