docx-rs/docx-wasm/js/settings.ts

9 lines
124 B
TypeScript
Raw Normal View History

2020-08-19 18:53:35 +03:00
export class Settings {
_docId: string | null = null;
docId(id: string) {
this._docId = id;
return this;
}
}