igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
46 lines (45 loc) • 2.88 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 { __extends } from "tslib";
import { Base, String_$type, markType } from "./type";
import { Dictionary$2 } from "./Dictionary$2";
import { StrategyBasedIndicatorDescriptionMetadata } from "./StrategyBasedIndicatorDescriptionMetadata";
import { FullStochasticOscillatorIndicatorDescription } from "./FullStochasticOscillatorIndicatorDescription";
/**
* @hidden
*/
var FullStochasticOscillatorIndicatorDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(FullStochasticOscillatorIndicatorDescriptionMetadata, _super);
function FullStochasticOscillatorIndicatorDescriptionMetadata() {
return _super !== null && _super.apply(this, arguments) || this;
}
FullStochasticOscillatorIndicatorDescriptionMetadata.b = function (a) {
if (FullStochasticOscillatorIndicatorDescriptionMetadata.a == null) {
FullStochasticOscillatorIndicatorDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
FullStochasticOscillatorIndicatorDescriptionMetadata.c(FullStochasticOscillatorIndicatorDescriptionMetadata.a);
}
if (a.k(FullStochasticOscillatorIndicatorDescriptionMetadata.a)) {
return;
}
a.ac(FullStochasticOscillatorIndicatorDescriptionMetadata.a);
};
FullStochasticOscillatorIndicatorDescriptionMetadata.c = function (a) {
StrategyBasedIndicatorDescriptionMetadata.c(a);
a.item("Period", "Number:int");
a.item("SmoothingPeriod", "Number:int");
a.item("TriggerPeriod", "Number:int");
};
FullStochasticOscillatorIndicatorDescriptionMetadata.d = function (a) {
FullStochasticOscillatorIndicatorDescriptionMetadata.b(a);
a.ae("FullStochasticOscillatorIndicator", function () { return new FullStochasticOscillatorIndicatorDescription(); });
a.ad("FullStochasticOscillatorIndicator", FullStochasticOscillatorIndicatorDescriptionMetadata.a);
};
FullStochasticOscillatorIndicatorDescriptionMetadata.$t = markType(FullStochasticOscillatorIndicatorDescriptionMetadata, 'FullStochasticOscillatorIndicatorDescriptionMetadata');
FullStochasticOscillatorIndicatorDescriptionMetadata.a = null;
return FullStochasticOscillatorIndicatorDescriptionMetadata;
}(Base));
export { FullStochasticOscillatorIndicatorDescriptionMetadata };