bulletpoints
Version:
JavaScript PowerPoint Library
17 lines (16 loc) • 491 B
TypeScript
import ElementInterface from './element-interface';
export default class CurrentDateElement implements ElementInterface {
position: any;
runProperties: any;
fieldId: any;
dateFormat?: string;
constructor({ x, y, w, h, dateFormat, ...runOptions }: {
[x: string]: any;
x: any;
y: any;
w: any;
h: any;
dateFormat: any;
}, relations: any);
render(idx: any, presLayout: any, placeholder: any): string;
}