ts-odata-client
Version:
OData TypeScript Client
15 lines (14 loc) • 454 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Literal = void 0;
/**
* Represents a literal value, the provided type may be different than that of the runtime type (e.g., Guid instead of a string).
*/
var Literal = /** @class */ (function () {
function Literal(value, literalType) {
this.value = value;
this.literalType = literalType;
}
return Literal;
}());
exports.Literal = Literal;