Lines Matching refs:EventSource
1064 var EventSource = /** @class */ (function (_super) {
1065 tslib_1.__extends(EventSource, _super);
1068 function EventSource(calendar) {
1072 _this.uid = String(EventSource.uuid++);
1078 EventSource.parse = function (rawInput, calendar) {
1087 EventSource.normalizeId = function (id) {
1093 EventSource.prototype.fetch = function (start, end, timezone) {
1096 EventSource.prototype.removeEventDefsById = function (eventDefId) {
1099 EventSource.prototype.removeAllEventDefs = function () {
1105 EventSource.prototype.getPrimitive = function (otherSource) {
1108 EventSource.prototype.parseEventDefs = function (rawEventDefs) {
1120 EventSource.prototype.parseEventDef = function (rawInput) {
1131 EventSource.prototype.applyManualStandardProps = function (rawProps) {
1133 this.id = EventSource.normalizeId(rawProps.id);
1144 EventSource.uuid = 0;
1145 EventSource.defineStandardProps = ParsableModelMixin_1.default.defineStandardProps;
1146 EventSource.copyVerbatimStandardProps = ParsableModelMixin_1.default.copyVerbatimStandardProps;
1147 return EventSource;
1149 exports.default = EventSource;
1150 ParsableModelMixin_1.default.mixInto(EventSource);
1153 EventSource.defineStandardProps({
2103 exports.EventSource = EventSource_1.default;