igniteui-react-core
Version:
Ignite UI React Core.
46 lines (45 loc) • 2.29 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { Base, String_$type, markType } from "./type";
import { Dictionary$2 } from "./Dictionary$2";
import { HighlightingInfoDescription } from "./HighlightingInfoDescription";
/**
* @hidden
*/
export let HighlightingInfoDescriptionMetadata = /*@__PURE__*/ (() => {
class HighlightingInfoDescriptionMetadata extends Base {
static b(a) {
if (HighlightingInfoDescriptionMetadata.a == null) {
HighlightingInfoDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
HighlightingInfoDescriptionMetadata.c(HighlightingInfoDescriptionMetadata.a);
}
if (a.k(HighlightingInfoDescriptionMetadata.a)) {
return;
}
a.ac(HighlightingInfoDescriptionMetadata.a);
}
static c(a) {
a.item("StartIndex", "Number:int");
a.item("EndIndex", "Number:int");
a.item("State", "ExportedType:string:HighlightingState");
a.item("State@names", "Outward;Inward;Static");
a.item("Progress", "Number:double");
a.item("IsMarker", "Boolean");
a.item("IsFullRange", "Boolean");
a.item("IsExclusive", "Boolean");
a.item("ContextRef", "(w:Context,wf:Context)DataRef");
}
static d(a) {
HighlightingInfoDescriptionMetadata.b(a);
a.ae("HighlightingInfo", () => new HighlightingInfoDescription());
a.ad("HighlightingInfo", HighlightingInfoDescriptionMetadata.a);
}
}
HighlightingInfoDescriptionMetadata.$t = /*@__PURE__*/ markType(HighlightingInfoDescriptionMetadata, 'HighlightingInfoDescriptionMetadata');
HighlightingInfoDescriptionMetadata.a = null;
return HighlightingInfoDescriptionMetadata;
})();