( ...args: Array<any> )
| 100 | // Implements the `DataApi` interface. |
| 101 | // See: https://ckeditor.com/docs/ckeditor5/latest/api/module_core_editor_utils_dataapimixin-DataApi.html |
| 102 | public setData( ...args: Array<any> ): void { |
| 103 | return this.data.set.call( this, ...args ); |
| 104 | } |
| 105 | |
| 106 | public getData( ...args: Array<any> ): string { |
| 107 | return this.data.get.call( this, ...args ); |
no outgoing calls