(location: Position, value: string)
| 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 |
| 51 | } |
no outgoing calls
no test coverage detected