angular2-schema-form
Version:
Angular2 Schema Form (DISCLAIMER: it is not related to angular-schema-form)
23 lines (22 loc) • 903 B
JavaScript
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
import { AtomicProperty } from './atomicproperty';
var BooleanProperty = (function (_super) {
__extends(BooleanProperty, _super);
function BooleanProperty() {
return _super !== null && _super.apply(this, arguments) || this;
}
BooleanProperty.prototype.fallbackValue = function () {
return null;
};
return BooleanProperty;
}(AtomicProperty));
export { BooleanProperty };