You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: index.d.ts
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
import{PathLike}from'line-column-path';
1
+
import{typePathLike}from'line-column-path';
2
2
3
-
exportinterfaceOptions{
3
+
exporttypeOptions={
4
4
/**
5
5
The name, command, or binary path of the editor.
6
6
@@ -24,9 +24,9 @@ export interface Options {
24
24
```
25
25
*/
26
26
readonlywait?: boolean;
27
-
}
27
+
};
28
28
29
-
exportinterfaceEditorInfo{
29
+
exporttypeEditorInfo={
30
30
/**
31
31
THe editor binary name.
32
32
*/
@@ -41,7 +41,7 @@ export interface EditorInfo {
41
41
A flag indicating whether the editor runs in the terminal.
42
42
*/
43
43
readonlyisTerminalEditor: boolean;
44
-
}
44
+
};
45
45
46
46
/**
47
47
Open the given files in the user's editor at specific line and column if supported by the editor. It does not wait for the editor to start or quit unless you specify `wait: true` in the options.
0 commit comments