UNPKG

ts-odata-client

Version:
15 lines (14 loc) 454 B
"use strict"; 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;