docx-rs/docx-wasm/js/doc-props.ts

15 lines
254 B
TypeScript
Raw Normal View History

2021-02-25 03:27:59 +02:00
export class DocProps {
_createdAt: string | null = null;
_updatedAt: string | null = null;
createdAt(date: string) {
this._createdAt = date;
return this;
}
updatedAt(date: string) {
this._updatedAt = date;
return this;
}
}