Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
constructor(baseUri, options) {
if (!options)
options = {};
super(undefined, options);
this.baseUri = baseUri;
if (!this.baseUri) {
this.baseUri = 'http://localhost:3000';
}
this.addUserAgentInfo(`${packageName}/${packageVersion}`);
this.bool = new operations.Bool(this);
this.intModel = new operations.IntModel(this);
this.serializer = new msRest.Serializer(Mappers);
}
}
constructor(baseUri, options) {
if (!options)
options = {};
super(undefined, options);
this.baseUri = baseUri;
if (!this.baseUri) {
this.baseUri = 'http://localhost';
}
this.addUserAgentInfo(`${packageName}/${packageVersion}`);
this.bool = new operations.Bool(this);
this.serializer = new msRest.Serializer(Mappers);
}
}
constructor(baseUri, options) {
if (!options)
options = {};
super(undefined, options);
this.baseUri = baseUri;
if (!this.baseUri) {
this.baseUri = 'http://localhost';
}
this.addUserAgentInfo(`${packageName}/${packageVersion}`);
this.intModel = new operations.IntModel(this);
this.serializer = new msRest.Serializer(Mappers);
}
}
constructor(baseUri, options) {
if (!options)
options = {};
super(undefined, options);
this.baseUri = baseUri;
if (!this.baseUri) {
this.baseUri = 'http://localhost:3000';
}
this.addUserAgentInfo(`${packageName}/${packageVersion}`);
this.string = new operations.String(this);
this.enumModel = new operations.EnumModel(this);
this.serializer = new msRest.Serializer(Mappers);
}
}
constructor(baseUri, options) {
if (!options)
options = {};
super(undefined, options);
this.baseUri = baseUri;
if (!this.baseUri) {
this.baseUri = 'http://localhost';
}
this.addUserAgentInfo(`${packageName}/${packageVersion}`);
this.arrayModel = new operations.ArrayModel(this);
this.serializer = new msRest.Serializer(Mappers);
}
}