glslx 0.4.1 → 0.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/glslx +87 -86
- package/glslx.d.ts +2 -1
- package/package.json +1 -1
package/glslx.d.ts
CHANGED
|
@@ -93,6 +93,7 @@ export interface RenameRequest {
|
|
|
93
93
|
|
|
94
94
|
export interface RenameResponse {
|
|
95
95
|
ranges: Range[] | null;
|
|
96
|
+
definitions: Range[] | null;
|
|
96
97
|
symbol: string | null;
|
|
97
98
|
}
|
|
98
99
|
|
|
@@ -107,7 +108,7 @@ export interface CompletionResponse {
|
|
|
107
108
|
}
|
|
108
109
|
|
|
109
110
|
export interface Completion {
|
|
110
|
-
kind: 'variable' | 'function' | 'struct' | 'keyword';
|
|
111
|
+
kind: 'variable' | 'function' | 'struct' | 'keyword' | 'method';
|
|
111
112
|
name: string;
|
|
112
113
|
detail: string;
|
|
113
114
|
documentation: string;
|