azurite
Version:
An open source Azure Storage API compatible server
28 lines • 743 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.EdmNull = void 0;
class EdmNull {
static validate(value) {
if (typeof value !== "object" && value !== null) {
throw TypeError(`Not a valid EdmNull string.`);
}
}
constructor(value) {
this.value = value;
EdmNull.validate(value);
}
toJsonPropertyValuePair(name) {
return;
}
toJsonPropertyValueString(name) {
return;
}
toJsonPropertyTypePair(name, annotationLevel, isSystemProperty) {
return;
}
toJsonPropertyTypeString(name, annotationLevel, isSystemProperty) {
return;
}
}
exports.EdmNull = EdmNull;
//# sourceMappingURL=EdmNull.js.map
;