botframework-webchat-component
Version:
React component of botframework-webchat
30 lines (24 loc) • 674 B
text/typescript
export default class UndoEntry {
constructor(value: string, selectionStart: number | null, selectionEnd: number | null, group: string | undefined) {
this.
this.
this.
this.
}
get group(): string | undefined {
return this.
}
get selectionStart(): number | null {
return this.
}
get selectionEnd(): number | null {
return this.
}
get value(): string {
return this.
}
}