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.
Files changed (3) hide show
  1. package/glslx +87 -86
  2. package/glslx.d.ts +2 -1
  3. 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "glslx",
3
- "version": "0.4.1",
3
+ "version": "0.4.3",
4
4
  "description": "",
5
5
  "repository": {
6
6
  "type": "git",