@doczilla/node
Version:
Doczilla API wrapper
25 lines (24 loc) • 515 B
TypeScript
import type { TemplateVariables } from './TemplateVariables';
export type CreateTemplate = {
/**
* The name of the template.
*/
name: string;
/**
* The output format of the template.
*/
output: CreateTemplate.output;
/**
* The variables of the template.
*/
variables: TemplateVariables;
};
export declare namespace CreateTemplate {
/**
* The output format of the template.
*/
enum output {
PDF = "PDF",
IMAGE = "IMAGE"
}
}