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