salesforce-alm
Version:
This package contains tools, and APIs, for an improved salesforce.com developer experience.
21 lines (19 loc) • 603 B
JavaScript
;
/*
* Copyright (c) 2020, salesforce.com, inc.
* All rights reserved.
* Licensed under the BSD 3-Clause license.
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.TypeDefObj = void 0;
class TypeDefObj {
constructor(metadataName) {
this.metadataName = metadataName;
// defaults
this.isAddressable = true;
this.isSourceTracked = true;
}
}
exports.TypeDefObj = TypeDefObj;
//# sourceMappingURL=typeDefObj.js.map