(location: Position | Range | Selection, value: string)
| 45 | */ |
| 46 | export interface TextEditorEdit { |
| 47 | replace(location: Position | Range | Selection, value: string): void |
| 48 | insert(location: Position, value: string): void |
| 49 | delete(location: Range | Selection): void |
| 50 | setEndOfLine(endOfLine: EndOfLine): void |
no outgoing calls