docx-rs/docx-wasm/js/comment-end.ts

7 lines
92 B
TypeScript
Raw Normal View History

export class CommentEnd {
id: number;
constructor(id: number) {
this.id = id;
}
}