@@ -101,9 +101,9 @@ export interface ShowInputBoxParams {
101101 * An optional title of the input box.
102102 */
103103 title ?: string ;
104- /**
105- * The text to display underneath the input box.
106- */
104+ /**
105+ * The text to display underneath the input box.
106+ */
107107 prompt : string ;
108108 /**
109109 * The value to prefill in the input box.
@@ -131,13 +131,13 @@ export interface ShowMutliStepInputParams {
131131}
132132
133133export interface InputCallbackParams {
134- inputId : string ;
134+ inputId : string ;
135135 step : number ;
136136 data : { [ name : string ] : readonly vscode . QuickPickItem [ ] | string } ;
137137}
138138
139139export interface StepInfo {
140- totalSteps : number ;
140+ totalSteps : number ;
141141 stepId : string ;
142142}
143143
@@ -212,43 +212,43 @@ export namespace SaveDocumentsRequest {
212212}
213213
214214export 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 [ ] ;
219219}
220220
221221export interface CreateExplorerParams {
222- explorerId : string ;
222+ explorerId : string ;
223223}
224224
225225export interface NodeOperationParams {
226- nodeId : number ;
226+ nodeId : number ;
227227}
228228
229229export interface ProjectActionParams {
230- action : string ;
231- configuration ? : string ;
232- fallback ? : boolean ;
230+ action : string ;
231+ configuration ?: string ;
232+ fallback ?: boolean ;
233233}
234234
235235export interface GetResourceParams {
236- uri : vscode . Uri ;
237- acceptEncoding ? : string [ ] ;
238- acceptContent ? : string [ ] ;
236+ uri : vscode . Uri ;
237+ acceptEncoding ?: string [ ] ;
238+ acceptContent ?: string [ ] ;
239239}
240240
241241export 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 ;
246246}
247247
248248export interface FindPathParams {
249- rootNodeId : number ;
250- uri ? : vscode . Uri ;
251- selectData ? : any ;
249+ rootNodeId : number ;
250+ uri ?: vscode . Uri ;
251+ selectData ?: any ;
252252}
253253
254254export enum NodeChangeType {
@@ -271,31 +271,31 @@ export namespace NodeInfoNotification {
271271
272272export namespace NodeInfoRequest {
273273 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' ) ;
275275 export const children = new ProtocolRequestType < NodeOperationParams , number [ ] , never , void , void > ( 'nodes/children' ) ;
276276 export const destroy = new ProtocolRequestType < NodeOperationParams , boolean , never , void , void > ( 'nodes/delete' ) ;
277277 export const collapsed = new ProtocolNotificationType < NodeOperationParams , void > ( 'nodes/collapsed' ) ;
278278 export const getresource = new ProtocolRequestType < GetResourceParams , ResourceData , never , void , void > ( 'nodes/getresource' ) ;
279279 export const findparams = new ProtocolRequestType < FindPathParams , number [ ] , never , void , void > ( 'nodes/findpath' ) ;
280280 export const changes = new ProtocolRequestType < NodeChangesParams , number , never , void , void > ( 'nodes/changes' ) ;
281-
281+
282282 export interface IconDescriptor {
283- baseUri : vscode . Uri ;
283+ baseUri : vscode . Uri ;
284284 }
285285 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 ;
299299 }
300300} ;
301301
0 commit comments