File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -196,7 +196,7 @@ Returns the default content of "nsconfig.json" merged with the properties provid
196
196
* Returns the default content of "nsconfig.json" merged with the properties provided by the "data" argument.
197
197
* @param {Object} data Properties that should not be defaulted.
198
198
*/
199
- getNsConfigDefaultContent (data: Object ): string
199
+ getNsConfigDefaultContent (data? : Object ): string
200
200
` ` `
201
201
202
202
## extensibilityService
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ export class ProjectDataService implements IProjectDataService {
126
126
}
127
127
128
128
@exported ( "projectDataService" )
129
- public getNsConfigDefaultContent ( data : Object ) : string {
129
+ public getNsConfigDefaultContent ( data ? : Object ) : string {
130
130
const config : INsConfig = { } ;
131
131
Object . assign ( config , data ) ;
132
132
You can’t perform that action at this time.
0 commit comments