@@ -101,9 +101,9 @@ export interface ShowInputBoxParams {
101
101
* An optional title of the input box.
102
102
*/
103
103
title ?: string ;
104
- /**
105
- * The text to display underneath the input box.
106
- */
104
+ /**
105
+ * The text to display underneath the input box.
106
+ */
107
107
prompt : string ;
108
108
/**
109
109
* The value to prefill in the input box.
@@ -131,13 +131,13 @@ export interface ShowMutliStepInputParams {
131
131
}
132
132
133
133
export interface InputCallbackParams {
134
- inputId : string ;
134
+ inputId : string ;
135
135
step : number ;
136
136
data : { [ name : string ] : readonly vscode . QuickPickItem [ ] | string } ;
137
137
}
138
138
139
139
export interface StepInfo {
140
- totalSteps : number ;
140
+ totalSteps : number ;
141
141
stepId : string ;
142
142
}
143
143
@@ -212,43 +212,43 @@ export namespace SaveDocumentsRequest {
212
212
}
213
213
214
214
export interface NodeChangedParams {
215
- rootId : number ;
216
- nodeId : number | null ;
217
- types ? : NodeChangeType [ ] ;
218
- properties ? : String [ ] ;
215
+ rootId : number ;
216
+ nodeId : number | null ;
217
+ types ?: NodeChangeType [ ] ;
218
+ properties ?: String [ ] ;
219
219
}
220
220
221
221
export interface CreateExplorerParams {
222
- explorerId : string ;
222
+ explorerId : string ;
223
223
}
224
224
225
225
export interface NodeOperationParams {
226
- nodeId : number ;
226
+ nodeId : number ;
227
227
}
228
228
229
229
export interface ProjectActionParams {
230
- action : string ;
231
- configuration ? : string ;
232
- fallback ? : boolean ;
230
+ action : string ;
231
+ configuration ?: string ;
232
+ fallback ?: boolean ;
233
233
}
234
234
235
235
export interface GetResourceParams {
236
- uri : vscode . Uri ;
237
- acceptEncoding ? : string [ ] ;
238
- acceptContent ? : string [ ] ;
236
+ uri : vscode . Uri ;
237
+ acceptEncoding ?: string [ ] ;
238
+ acceptContent ?: string [ ] ;
239
239
}
240
240
241
241
export interface ResourceData {
242
- contentType : string ;
243
- encoding : string ;
244
- content : string ;
245
- contentSize : number ;
242
+ contentType : string ;
243
+ encoding : string ;
244
+ content : string ;
245
+ contentSize : number ;
246
246
}
247
247
248
248
export interface FindPathParams {
249
- rootNodeId : number ;
250
- uri ? : vscode . Uri ;
251
- selectData ? : any ;
249
+ rootNodeId : number ;
250
+ uri ?: vscode . Uri ;
251
+ selectData ?: any ;
252
252
}
253
253
254
254
export enum NodeChangeType {
@@ -271,31 +271,31 @@ export namespace NodeInfoNotification {
271
271
272
272
export namespace NodeInfoRequest {
273
273
export const explorermanager = new ProtocolRequestType < CreateExplorerParams , never , Data , void , void > ( 'nodes/explorermanager' ) ;
274
- export const info = new ProtocolRequestType < NodeOperationParams , Data , never , void , void > ( 'nodes/info' ) ;
274
+ export const info = new ProtocolRequestType < NodeOperationParams , Data , never , void , void > ( 'nodes/info' ) ;
275
275
export const children = new ProtocolRequestType < NodeOperationParams , number [ ] , never , void , void > ( 'nodes/children' ) ;
276
276
export const destroy = new ProtocolRequestType < NodeOperationParams , boolean , never , void , void > ( 'nodes/delete' ) ;
277
277
export const collapsed = new ProtocolNotificationType < NodeOperationParams , void > ( 'nodes/collapsed' ) ;
278
278
export const getresource = new ProtocolRequestType < GetResourceParams , ResourceData , never , void , void > ( 'nodes/getresource' ) ;
279
279
export const findparams = new ProtocolRequestType < FindPathParams , number [ ] , never , void , void > ( 'nodes/findpath' ) ;
280
280
export const changes = new ProtocolRequestType < NodeChangesParams , number , never , void , void > ( 'nodes/changes' ) ;
281
-
281
+
282
282
export interface IconDescriptor {
283
- baseUri : vscode . Uri ;
283
+ baseUri : vscode . Uri ;
284
284
}
285
285
export interface Data {
286
- id : number ; /* numeric ID of the node */
287
- name : string ; /* Node.getName() */
288
- label : string ; /* Node.getDisplayName() */
289
- tooltip ? : string ;
290
- description : string ; /* Node.getShortDescription() */
291
- resourceUri ? : string ; /* external URL to file: resource */
292
- collapsibleState : vscode . TreeItemCollapsibleState ;
293
- canDestroy : boolean ; /* Node.canDestroy() */
294
- contextValue : string ; /* Node.getCookies() */
295
- iconDescriptor ? : IconDescriptor ;
296
- iconUri : string | null ;
297
- iconIndex : number ;
298
- command ? : string ;
286
+ id : number ; /* numeric ID of the node */
287
+ name : string ; /* Node.getName() */
288
+ label : string ; /* Node.getDisplayName() */
289
+ tooltip ?: string ;
290
+ description : string ; /* Node.getShortDescription() */
291
+ resourceUri ?: string ; /* external URL to file: resource */
292
+ collapsibleState : vscode . TreeItemCollapsibleState ;
293
+ canDestroy : boolean ; /* Node.canDestroy() */
294
+ contextValue : string ; /* Node.getCookies() */
295
+ iconDescriptor ?: IconDescriptor ;
296
+ iconUri : string | null ;
297
+ iconIndex : number ;
298
+ command ?: string ;
299
299
}
300
300
} ;
301
301
0 commit comments