(str: string)
| 103 | this.text += str + '\n'; |
| 104 | } |
| 105 | |
| 106 | addCustomEmoji(placeholder: string, documentId: BigInteger): void { |
| 107 | const offset = this.calculateOffset(this.text); |
| 108 | const length = placeholder.length; // Simple length calculation |
| 109 | this.text += placeholder; |
| 110 |