@nodert-win10-cu/windows.ui.xaml.media.animation
Version:
Use the Windows.UI.Xaml.Media.Animation UWP API directly from Node.js
1,761 lines (1,396 loc) • 76.8 kB
JavaScript
Point = (function () {
var cls = function Point() {
};
return cls;
}) ();
exports.Point = Point;
Duration = (function () {
var cls = function Duration() {
};
return cls;
}) ();
exports.Duration = Duration;
Color = (function () {
var cls = function Color() {
};
return cls;
}) ();
exports.Color = Color;
_ClockState = function () {
this.active = 0;
this.filling = 1;
this.stopped = 2;
}
exports.ClockState = new _ClockState();
_EasingMode = function () {
this.easeOut = 0;
this.easeIn = 1;
this.easeInOut = 2;
}
exports.EasingMode = new _EasingMode();
_FillBehavior = function () {
this.holdEnd = 0;
this.stop = 1;
}
exports.FillBehavior = new _FillBehavior();
_ConnectedAnimationComponent = function () {
this.offsetX = 0;
this.offsetY = 1;
this.crossFade = 2;
this.scale = 3;
}
exports.ConnectedAnimationComponent = new _ConnectedAnimationComponent();
ConditionallyIndependentlyAnimatableAttribute = (function () {
var cls = function ConditionallyIndependentlyAnimatableAttribute() {
this.typeId = new Object();
};
return cls;
}) ();
exports.ConditionallyIndependentlyAnimatableAttribute = ConditionallyIndependentlyAnimatableAttribute;
IndependentlyAnimatableAttribute = (function () {
var cls = function IndependentlyAnimatableAttribute() {
this.typeId = new Object();
};
return cls;
}) ();
exports.IndependentlyAnimatableAttribute = IndependentlyAnimatableAttribute;
TransitionCollection = (function () {
var cls = function TransitionCollection() {
};
cls.prototype.getAt = function getAt(index) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// <returns type="Transition" />
/// </signature>
return new Transition();
}
cls.prototype.getView = function getView() {
/// <signature>
/// <summary>Function summary.</summary>
/// <returns type="Object" />
/// </signature>
return new Object();
}
cls.prototype.indexOf = function indexOf(value, index) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="value" type="Transition">A param.</param>
/// <param name="index" type="Number">A param.</param>
/// <returns type="Boolean" />
/// </signature>
return new Boolean();
}
cls.prototype.setAt = function setAt(index, value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// <param name="value" type="Transition">A param.</param>
/// </signature>
}
cls.prototype.insertAt = function insertAt(index, value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// <param name="value" type="Transition">A param.</param>
/// </signature>
}
cls.prototype.removeAt = function removeAt(index) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// </signature>
}
cls.prototype.append = function append(value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="value" type="Transition">A param.</param>
/// </signature>
}
cls.prototype.removeAtEnd = function removeAtEnd() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.clear = function clear() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.getMany = function () {
}
cls.prototype.replaceAll = function replaceAll(items) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="items" type="Array<Object>">A param.</param>
/// </signature>
}
cls.prototype.first = function first() {
/// <signature>
/// <summary>Function summary.</summary>
/// <returns type="Object" />
/// </signature>
return new Object();
}
return cls;
}) ();
exports.TransitionCollection = TransitionCollection;
DoubleKeyFrameCollection = (function () {
var cls = function DoubleKeyFrameCollection() {
};
cls.prototype.getAt = function getAt(index) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// <returns type="DoubleKeyFrame" />
/// </signature>
return new DoubleKeyFrame();
}
cls.prototype.getView = function getView() {
/// <signature>
/// <summary>Function summary.</summary>
/// <returns type="Object" />
/// </signature>
return new Object();
}
cls.prototype.indexOf = function indexOf(value, index) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="value" type="DoubleKeyFrame">A param.</param>
/// <param name="index" type="Number">A param.</param>
/// <returns type="Boolean" />
/// </signature>
return new Boolean();
}
cls.prototype.setAt = function setAt(index, value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// <param name="value" type="DoubleKeyFrame">A param.</param>
/// </signature>
}
cls.prototype.insertAt = function insertAt(index, value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// <param name="value" type="DoubleKeyFrame">A param.</param>
/// </signature>
}
cls.prototype.removeAt = function removeAt(index) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// </signature>
}
cls.prototype.append = function append(value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="value" type="DoubleKeyFrame">A param.</param>
/// </signature>
}
cls.prototype.removeAtEnd = function removeAtEnd() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.clear = function clear() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.getMany = function () {
}
cls.prototype.replaceAll = function replaceAll(items) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="items" type="Array<Object>">A param.</param>
/// </signature>
}
cls.prototype.first = function first() {
/// <signature>
/// <summary>Function summary.</summary>
/// <returns type="Object" />
/// </signature>
return new Object();
}
return cls;
}) ();
exports.DoubleKeyFrameCollection = DoubleKeyFrameCollection;
ObjectKeyFrameCollection = (function () {
var cls = function ObjectKeyFrameCollection() {
};
cls.prototype.getAt = function getAt(index) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// <returns type="ObjectKeyFrame" />
/// </signature>
return new ObjectKeyFrame();
}
cls.prototype.getView = function getView() {
/// <signature>
/// <summary>Function summary.</summary>
/// <returns type="Object" />
/// </signature>
return new Object();
}
cls.prototype.indexOf = function indexOf(value, index) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="value" type="ObjectKeyFrame">A param.</param>
/// <param name="index" type="Number">A param.</param>
/// <returns type="Boolean" />
/// </signature>
return new Boolean();
}
cls.prototype.setAt = function setAt(index, value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// <param name="value" type="ObjectKeyFrame">A param.</param>
/// </signature>
}
cls.prototype.insertAt = function insertAt(index, value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// <param name="value" type="ObjectKeyFrame">A param.</param>
/// </signature>
}
cls.prototype.removeAt = function removeAt(index) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// </signature>
}
cls.prototype.append = function append(value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="value" type="ObjectKeyFrame">A param.</param>
/// </signature>
}
cls.prototype.removeAtEnd = function removeAtEnd() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.clear = function clear() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.getMany = function () {
}
cls.prototype.replaceAll = function replaceAll(items) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="items" type="Array<Object>">A param.</param>
/// </signature>
}
cls.prototype.first = function first() {
/// <signature>
/// <summary>Function summary.</summary>
/// <returns type="Object" />
/// </signature>
return new Object();
}
return cls;
}) ();
exports.ObjectKeyFrameCollection = ObjectKeyFrameCollection;
TimelineCollection = (function () {
var cls = function TimelineCollection() {
};
cls.prototype.getAt = function getAt(index) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// <returns type="Timeline" />
/// </signature>
return new Timeline();
}
cls.prototype.getView = function getView() {
/// <signature>
/// <summary>Function summary.</summary>
/// <returns type="Object" />
/// </signature>
return new Object();
}
cls.prototype.indexOf = function indexOf(value, index) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="value" type="Timeline">A param.</param>
/// <param name="index" type="Number">A param.</param>
/// <returns type="Boolean" />
/// </signature>
return new Boolean();
}
cls.prototype.setAt = function setAt(index, value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// <param name="value" type="Timeline">A param.</param>
/// </signature>
}
cls.prototype.insertAt = function insertAt(index, value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// <param name="value" type="Timeline">A param.</param>
/// </signature>
}
cls.prototype.removeAt = function removeAt(index) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// </signature>
}
cls.prototype.append = function append(value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="value" type="Timeline">A param.</param>
/// </signature>
}
cls.prototype.removeAtEnd = function removeAtEnd() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.clear = function clear() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.getMany = function () {
}
cls.prototype.replaceAll = function replaceAll(items) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="items" type="Array<Object>">A param.</param>
/// </signature>
}
cls.prototype.first = function first() {
/// <signature>
/// <summary>Function summary.</summary>
/// <returns type="Object" />
/// </signature>
return new Object();
}
return cls;
}) ();
exports.TimelineCollection = TimelineCollection;
DoubleKeyFrame = (function () {
var cls = function DoubleKeyFrame() {
this.value = new Number();
this.keyTime = new KeyTime();
this.dispatcher = new Object();
};
cls.keyTimeProperty = new Object();
cls.valueProperty = new Object();
return cls;
}) ();
exports.DoubleKeyFrame = DoubleKeyFrame;
EasingFunctionBase = (function () {
var cls = function EasingFunctionBase() {
this.easingMode = new EasingMode();
this.dispatcher = new Object();
};
cls.prototype.ease = function ease(normalizedTime) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="normalizedTime" type="Number">A param.</param>
/// <returns type="Number" />
/// </signature>
return new Number();
}
cls.easingModeProperty = new Object();
return cls;
}) ();
exports.EasingFunctionBase = EasingFunctionBase;
KeySpline = (function () {
var cls = function KeySpline() {
this.controlPoint2 = new Object();
this.controlPoint1 = new Object();
this.dispatcher = new Object();
};
return cls;
}) ();
exports.KeySpline = KeySpline;
NavigationTransitionInfo = (function () {
var cls = function NavigationTransitionInfo() {
this.dispatcher = new Object();
};
cls.prototype.getNavigationStateCore = function getNavigationStateCore() {
/// <signature>
/// <summary>Function summary.</summary>
/// <returns type="String" />
/// </signature>
return new String();
}
cls.prototype.setNavigationStateCore = function setNavigationStateCore(navigationState) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="navigationState" type="String">A param.</param>
/// </signature>
}
return cls;
}) ();
exports.NavigationTransitionInfo = NavigationTransitionInfo;
ObjectKeyFrame = (function () {
var cls = function ObjectKeyFrame() {
this.value = new Object();
this.keyTime = new KeyTime();
this.dispatcher = new Object();
};
cls.keyTimeProperty = new Object();
cls.valueProperty = new Object();
return cls;
}) ();
exports.ObjectKeyFrame = ObjectKeyFrame;
Timeline = (function () {
var cls = function Timeline() {
this.speedRatio = new Number();
this.repeatBehavior = new RepeatBehavior();
this.fillBehavior = new FillBehavior();
this.duration = new Duration();
this.beginTime = new Number();
this.autoReverse = new Boolean();
this.dispatcher = new Object();
};
cls.allowDependentAnimations = new Boolean();
cls.autoReverseProperty = new Object();
cls.beginTimeProperty = new Object();
cls.durationProperty = new Object();
cls.fillBehaviorProperty = new Object();
cls.repeatBehaviorProperty = new Object();
cls.speedRatioProperty = new Object();
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callback){}
cls.prototype.off = function off(eventName, callback){}
return cls;
}) ();
exports.Timeline = Timeline;
Transition = (function () {
var cls = function Transition() {
this.dispatcher = new Object();
};
return cls;
}) ();
exports.Transition = Transition;
AddDeleteThemeTransition = (function () {
var cls = function AddDeleteThemeTransition() {
this.dispatcher = new Object();
};
return cls;
}) ();
exports.AddDeleteThemeTransition = AddDeleteThemeTransition;
BackEase = (function () {
var cls = function BackEase() {
this.amplitude = new Number();
this.easingMode = new EasingMode();
this.dispatcher = new Object();
};
cls.amplitudeProperty = new Object();
cls.easingModeProperty = new Object();
return cls;
}) ();
exports.BackEase = BackEase;
BeginStoryboard = (function () {
var cls = function BeginStoryboard() {
this.storyboard = new Storyboard();
this.dispatcher = new Object();
};
cls.storyboardProperty = new Object();
return cls;
}) ();
exports.BeginStoryboard = BeginStoryboard;
BounceEase = (function () {
var cls = function BounceEase() {
this.bounciness = new Number();
this.bounces = new Number();
this.easingMode = new EasingMode();
this.dispatcher = new Object();
};
cls.bouncesProperty = new Object();
cls.bouncinessProperty = new Object();
cls.easingModeProperty = new Object();
return cls;
}) ();
exports.BounceEase = BounceEase;
CircleEase = (function () {
var cls = function CircleEase() {
this.easingMode = new EasingMode();
this.dispatcher = new Object();
};
cls.easingModeProperty = new Object();
return cls;
}) ();
exports.CircleEase = CircleEase;
ColorAnimation = (function () {
var cls = function ColorAnimation() {
this.to = new Object();
this.from = new Object();
this.enableDependentAnimation = new Boolean();
this.easingFunction = new EasingFunctionBase();
this.by = new Object();
this.speedRatio = new Number();
this.repeatBehavior = new RepeatBehavior();
this.fillBehavior = new FillBehavior();
this.duration = new Duration();
this.beginTime = new Number();
this.autoReverse = new Boolean();
this.dispatcher = new Object();
};
cls.byProperty = new Object();
cls.easingFunctionProperty = new Object();
cls.enableDependentAnimationProperty = new Object();
cls.fromProperty = new Object();
cls.toProperty = new Object();
cls.allowDependentAnimations = new Boolean();
cls.autoReverseProperty = new Object();
cls.beginTimeProperty = new Object();
cls.durationProperty = new Object();
cls.fillBehaviorProperty = new Object();
cls.repeatBehaviorProperty = new Object();
cls.speedRatioProperty = new Object();
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callback){}
cls.prototype.off = function off(eventName, callback){}
return cls;
}) ();
exports.ColorAnimation = ColorAnimation;
ContentThemeTransition = (function () {
var cls = function ContentThemeTransition() {
this.verticalOffset = new Number();
this.horizontalOffset = new Number();
this.dispatcher = new Object();
};
cls.horizontalOffsetProperty = new Object();
cls.verticalOffsetProperty = new Object();
return cls;
}) ();
exports.ContentThemeTransition = ContentThemeTransition;
CubicEase = (function () {
var cls = function CubicEase() {
this.easingMode = new EasingMode();
this.dispatcher = new Object();
};
cls.easingModeProperty = new Object();
return cls;
}) ();
exports.CubicEase = CubicEase;
DiscreteDoubleKeyFrame = (function () {
var cls = function DiscreteDoubleKeyFrame() {
this.value = new Number();
this.keyTime = new KeyTime();
this.dispatcher = new Object();
};
cls.keyTimeProperty = new Object();
cls.valueProperty = new Object();
return cls;
}) ();
exports.DiscreteDoubleKeyFrame = DiscreteDoubleKeyFrame;
DiscreteObjectKeyFrame = (function () {
var cls = function DiscreteObjectKeyFrame() {
this.value = new Object();
this.keyTime = new KeyTime();
this.dispatcher = new Object();
};
cls.keyTimeProperty = new Object();
cls.valueProperty = new Object();
return cls;
}) ();
exports.DiscreteObjectKeyFrame = DiscreteObjectKeyFrame;
DoubleAnimation = (function () {
var cls = function DoubleAnimation() {
this.to = new Number();
this.from = new Number();
this.enableDependentAnimation = new Boolean();
this.easingFunction = new EasingFunctionBase();
this.by = new Number();
this.speedRatio = new Number();
this.repeatBehavior = new RepeatBehavior();
this.fillBehavior = new FillBehavior();
this.duration = new Duration();
this.beginTime = new Number();
this.autoReverse = new Boolean();
this.dispatcher = new Object();
};
cls.byProperty = new Object();
cls.easingFunctionProperty = new Object();
cls.enableDependentAnimationProperty = new Object();
cls.fromProperty = new Object();
cls.toProperty = new Object();
cls.allowDependentAnimations = new Boolean();
cls.autoReverseProperty = new Object();
cls.beginTimeProperty = new Object();
cls.durationProperty = new Object();
cls.fillBehaviorProperty = new Object();
cls.repeatBehaviorProperty = new Object();
cls.speedRatioProperty = new Object();
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callback){}
cls.prototype.off = function off(eventName, callback){}
return cls;
}) ();
exports.DoubleAnimation = DoubleAnimation;
DoubleAnimationUsingKeyFrames = (function () {
var cls = function DoubleAnimationUsingKeyFrames() {
this.enableDependentAnimation = new Boolean();
this.keyFrames = new DoubleKeyFrameCollection();
this.speedRatio = new Number();
this.repeatBehavior = new RepeatBehavior();
this.fillBehavior = new FillBehavior();
this.duration = new Duration();
this.beginTime = new Number();
this.autoReverse = new Boolean();
this.dispatcher = new Object();
};
cls.enableDependentAnimationProperty = new Object();
cls.allowDependentAnimations = new Boolean();
cls.autoReverseProperty = new Object();
cls.beginTimeProperty = new Object();
cls.durationProperty = new Object();
cls.fillBehaviorProperty = new Object();
cls.repeatBehaviorProperty = new Object();
cls.speedRatioProperty = new Object();
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callback){}
cls.prototype.off = function off(eventName, callback){}
return cls;
}) ();
exports.DoubleAnimationUsingKeyFrames = DoubleAnimationUsingKeyFrames;
EasingDoubleKeyFrame = (function () {
var cls = function EasingDoubleKeyFrame() {
this.easingFunction = new EasingFunctionBase();
this.value = new Number();
this.keyTime = new KeyTime();
this.dispatcher = new Object();
};
cls.easingFunctionProperty = new Object();
cls.keyTimeProperty = new Object();
cls.valueProperty = new Object();
return cls;
}) ();
exports.EasingDoubleKeyFrame = EasingDoubleKeyFrame;
EdgeUIThemeTransition = (function () {
var cls = function EdgeUIThemeTransition() {
this.edge = new Number();
this.dispatcher = new Object();
};
cls.edgeProperty = new Object();
return cls;
}) ();
exports.EdgeUIThemeTransition = EdgeUIThemeTransition;
ElasticEase = (function () {
var cls = function ElasticEase() {
this.springiness = new Number();
this.oscillations = new Number();
this.easingMode = new EasingMode();
this.dispatcher = new Object();
};
cls.oscillationsProperty = new Object();
cls.springinessProperty = new Object();
cls.easingModeProperty = new Object();
return cls;
}) ();
exports.ElasticEase = ElasticEase;
EntranceThemeTransition = (function () {
var cls = function EntranceThemeTransition() {
this.isStaggeringEnabled = new Boolean();
this.fromVerticalOffset = new Number();
this.fromHorizontalOffset = new Number();
this.dispatcher = new Object();
};
cls.fromHorizontalOffsetProperty = new Object();
cls.fromVerticalOffsetProperty = new Object();
cls.isStaggeringEnabledProperty = new Object();
return cls;
}) ();
exports.EntranceThemeTransition = EntranceThemeTransition;
ExponentialEase = (function () {
var cls = function ExponentialEase() {
this.exponent = new Number();
this.easingMode = new EasingMode();
this.dispatcher = new Object();
};
cls.exponentProperty = new Object();
cls.easingModeProperty = new Object();
return cls;
}) ();
exports.ExponentialEase = ExponentialEase;
LinearDoubleKeyFrame = (function () {
var cls = function LinearDoubleKeyFrame() {
this.value = new Number();
this.keyTime = new KeyTime();
this.dispatcher = new Object();
};
cls.keyTimeProperty = new Object();
cls.valueProperty = new Object();
return cls;
}) ();
exports.LinearDoubleKeyFrame = LinearDoubleKeyFrame;
ObjectAnimationUsingKeyFrames = (function () {
var cls = function ObjectAnimationUsingKeyFrames() {
this.enableDependentAnimation = new Boolean();
this.keyFrames = new ObjectKeyFrameCollection();
this.speedRatio = new Number();
this.repeatBehavior = new RepeatBehavior();
this.fillBehavior = new FillBehavior();
this.duration = new Duration();
this.beginTime = new Number();
this.autoReverse = new Boolean();
this.dispatcher = new Object();
};
cls.enableDependentAnimationProperty = new Object();
cls.allowDependentAnimations = new Boolean();
cls.autoReverseProperty = new Object();
cls.beginTimeProperty = new Object();
cls.durationProperty = new Object();
cls.fillBehaviorProperty = new Object();
cls.repeatBehaviorProperty = new Object();
cls.speedRatioProperty = new Object();
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callback){}
cls.prototype.off = function off(eventName, callback){}
return cls;
}) ();
exports.ObjectAnimationUsingKeyFrames = ObjectAnimationUsingKeyFrames;
PaneThemeTransition = (function () {
var cls = function PaneThemeTransition() {
this.edge = new Number();
this.dispatcher = new Object();
};
cls.edgeProperty = new Object();
return cls;
}) ();
exports.PaneThemeTransition = PaneThemeTransition;
PointAnimation = (function () {
var cls = function PointAnimation() {
this.to = new Object();
this.from = new Object();
this.enableDependentAnimation = new Boolean();
this.easingFunction = new EasingFunctionBase();
this.by = new Object();
this.speedRatio = new Number();
this.repeatBehavior = new RepeatBehavior();
this.fillBehavior = new FillBehavior();
this.duration = new Duration();
this.beginTime = new Number();
this.autoReverse = new Boolean();
this.dispatcher = new Object();
};
cls.byProperty = new Object();
cls.easingFunctionProperty = new Object();
cls.enableDependentAnimationProperty = new Object();
cls.fromProperty = new Object();
cls.toProperty = new Object();
cls.allowDependentAnimations = new Boolean();
cls.autoReverseProperty = new Object();
cls.beginTimeProperty = new Object();
cls.durationProperty = new Object();
cls.fillBehaviorProperty = new Object();
cls.repeatBehaviorProperty = new Object();
cls.speedRatioProperty = new Object();
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callback){}
cls.prototype.off = function off(eventName, callback){}
return cls;
}) ();
exports.PointAnimation = PointAnimation;
PopupThemeTransition = (function () {
var cls = function PopupThemeTransition() {
this.fromVerticalOffset = new Number();
this.fromHorizontalOffset = new Number();
this.dispatcher = new Object();
};
cls.fromHorizontalOffsetProperty = new Object();
cls.fromVerticalOffsetProperty = new Object();
return cls;
}) ();
exports.PopupThemeTransition = PopupThemeTransition;
PowerEase = (function () {
var cls = function PowerEase() {
this.power = new Number();
this.easingMode = new EasingMode();
this.dispatcher = new Object();
};
cls.powerProperty = new Object();
cls.easingModeProperty = new Object();
return cls;
}) ();
exports.PowerEase = PowerEase;
QuadraticEase = (function () {
var cls = function QuadraticEase() {
this.easingMode = new EasingMode();
this.dispatcher = new Object();
};
cls.easingModeProperty = new Object();
return cls;
}) ();
exports.QuadraticEase = QuadraticEase;
QuarticEase = (function () {
var cls = function QuarticEase() {
this.easingMode = new EasingMode();
this.dispatcher = new Object();
};
cls.easingModeProperty = new Object();
return cls;
}) ();
exports.QuarticEase = QuarticEase;
QuinticEase = (function () {
var cls = function QuinticEase() {
this.easingMode = new EasingMode();
this.dispatcher = new Object();
};
cls.easingModeProperty = new Object();
return cls;
}) ();
exports.QuinticEase = QuinticEase;
ReorderThemeTransition = (function () {
var cls = function ReorderThemeTransition() {
this.dispatcher = new Object();
};
return cls;
}) ();
exports.ReorderThemeTransition = ReorderThemeTransition;
RepositionThemeTransition = (function () {
var cls = function RepositionThemeTransition() {
this.isStaggeringEnabled = new Boolean();
this.dispatcher = new Object();
};
cls.isStaggeringEnabledProperty = new Object();
return cls;
}) ();
exports.RepositionThemeTransition = RepositionThemeTransition;
SineEase = (function () {
var cls = function SineEase() {
this.easingMode = new EasingMode();
this.dispatcher = new Object();
};
cls.easingModeProperty = new Object();
return cls;
}) ();
exports.SineEase = SineEase;
SplineDoubleKeyFrame = (function () {
var cls = function SplineDoubleKeyFrame() {
this.keySpline = new KeySpline();
this.value = new Number();
this.keyTime = new KeyTime();
this.dispatcher = new Object();
};
cls.keySplineProperty = new Object();
cls.keyTimeProperty = new Object();
cls.valueProperty = new Object();
return cls;
}) ();
exports.SplineDoubleKeyFrame = SplineDoubleKeyFrame;
Storyboard = (function () {
var cls = function Storyboard() {
this.children = new TimelineCollection();
this.speedRatio = new Number();
this.repeatBehavior = new RepeatBehavior();
this.fillBehavior = new FillBehavior();
this.duration = new Duration();
this.beginTime = new Number();
this.autoReverse = new Boolean();
this.dispatcher = new Object();
};
cls.prototype.seek = function seek(offset) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="offset" type="Number">A param.</param>
/// </signature>
}
cls.prototype.stop = function stop() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.begin = function begin() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.pause = function pause() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.resume = function resume() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.getCurrentState = function getCurrentState() {
/// <signature>
/// <summary>Function summary.</summary>
/// <returns type="ClockState" />
/// </signature>
return new ClockState();
}
cls.prototype.getCurrentTime = function getCurrentTime() {
/// <signature>
/// <summary>Function summary.</summary>
/// <returns type="Number" />
/// </signature>
return new Number();
}
cls.prototype.seekAlignedToLastTick = function seekAlignedToLastTick(offset) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="offset" type="Number">A param.</param>
/// </signature>
}
cls.prototype.skipToFill = function skipToFill() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.getTargetProperty = function getTargetProperty(element) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="element" type="Timeline">A param.</param>
/// <returns type="String" />
/// </signature>
return new String();
}
cls.setTargetProperty = function setTargetProperty(element, path) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="element" type="Timeline">A param.</param>
/// <param name="path" type="String">A param.</param>
/// </signature>
}
cls.getTargetName = function getTargetName(element) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="element" type="Timeline">A param.</param>
/// <returns type="String" />
/// </signature>
return new String();
}
cls.setTargetName = function setTargetName(element, name) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="element" type="Timeline">A param.</param>
/// <param name="name" type="String">A param.</param>
/// </signature>
}
cls.setTarget = function setTarget(timeline, target) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="timeline" type="Timeline">A param.</param>
/// <param name="target" type="Object">A param.</param>
/// </signature>
}
cls.targetNameProperty = new Object();
cls.targetPropertyProperty = new Object();
cls.allowDependentAnimations = new Boolean();
cls.autoReverseProperty = new Object();
cls.beginTimeProperty = new Object();
cls.durationProperty = new Object();
cls.fillBehaviorProperty = new Object();
cls.repeatBehaviorProperty = new Object();
cls.speedRatioProperty = new Object();
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callback){}
cls.prototype.off = function off(eventName, callback){}
return cls;
}) ();
exports.Storyboard = Storyboard;
ColorKeyFrameCollection = (function () {
var cls = function ColorKeyFrameCollection() {
};
cls.prototype.getAt = function getAt(index) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// <returns type="ColorKeyFrame" />
/// </signature>
return new ColorKeyFrame();
}
cls.prototype.getView = function getView() {
/// <signature>
/// <summary>Function summary.</summary>
/// <returns type="Object" />
/// </signature>
return new Object();
}
cls.prototype.indexOf = function indexOf(value, index) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="value" type="ColorKeyFrame">A param.</param>
/// <param name="index" type="Number">A param.</param>
/// <returns type="Boolean" />
/// </signature>
return new Boolean();
}
cls.prototype.setAt = function setAt(index, value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// <param name="value" type="ColorKeyFrame">A param.</param>
/// </signature>
}
cls.prototype.insertAt = function insertAt(index, value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// <param name="value" type="ColorKeyFrame">A param.</param>
/// </signature>
}
cls.prototype.removeAt = function removeAt(index) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// </signature>
}
cls.prototype.append = function append(value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="value" type="ColorKeyFrame">A param.</param>
/// </signature>
}
cls.prototype.removeAtEnd = function removeAtEnd() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.clear = function clear() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.getMany = function () {
}
cls.prototype.replaceAll = function replaceAll(items) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="items" type="Array<Object>">A param.</param>
/// </signature>
}
cls.prototype.first = function first() {
/// <signature>
/// <summary>Function summary.</summary>
/// <returns type="Object" />
/// </signature>
return new Object();
}
return cls;
}) ();
exports.ColorKeyFrameCollection = ColorKeyFrameCollection;
ConnectedAnimation = (function () {
var cls = function ConnectedAnimation() {
this.isScaleAnimationEnabled = new Boolean();
};
cls.prototype.tryStart = function tryStart(destination) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="destination" type="Object">A param.</param>
/// <returns type="Boolean" />
/// </signature>
return new Boolean();
}
cls.prototype.tryStart = function tryStart(destination, coordinatedElements) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="destination" type="Object">A param.</param>
/// <param name="coordinatedElements" type="Object">A param.</param>
/// <returns type="Boolean" />
/// </signature>
return new Boolean();
}
cls.prototype.cancel = function cancel() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.setAnimationComponent = function setAnimationComponent(component, animation) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="component" type="ConnectedAnimationComponent">A param.</param>
/// <param name="animation" type="Object">A param.</param>
/// </signature>
}
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callback){}
cls.prototype.off = function off(eventName, callback){}
return cls;
}) ();
exports.ConnectedAnimation = ConnectedAnimation;
ConnectedAnimationService = (function () {
var cls = function ConnectedAnimationService() {
this.defaultEasingFunction = new Object();
this.defaultDuration = new Number();
};
cls.prototype.prepareToAnimate = function prepareToAnimate(key, source) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="key" type="String">A param.</param>
/// <param name="source" type="Object">A param.</param>
/// <returns type="ConnectedAnimation" />
/// </signature>
return new ConnectedAnimation();
}
cls.prototype.getAnimation = function getAnimation(key) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="key" type="String">A param.</param>
/// <returns type="ConnectedAnimation" />
/// </signature>
return new ConnectedAnimation();
}
cls.getForCurrentView = function getForCurrentView() {
/// <signature>
/// <summary>Function summary.</summary>
/// <returns type="ConnectedAnimationService" />
/// </signature>
return new ConnectedAnimationService();
}
return cls;
}) ();
exports.ConnectedAnimationService = ConnectedAnimationService;
PointKeyFrameCollection = (function () {
var cls = function PointKeyFrameCollection() {
};
cls.prototype.getAt = function getAt(index) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// <returns type="PointKeyFrame" />
/// </signature>
return new PointKeyFrame();
}
cls.prototype.getView = function getView() {
/// <signature>
/// <summary>Function summary.</summary>
/// <returns type="Object" />
/// </signature>
return new Object();
}
cls.prototype.indexOf = function indexOf(value, index) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="value" type="PointKeyFrame">A param.</param>
/// <param name="index" type="Number">A param.</param>
/// <returns type="Boolean" />
/// </signature>
return new Boolean();
}
cls.prototype.setAt = function setAt(index, value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// <param name="value" type="PointKeyFrame">A param.</param>
/// </signature>
}
cls.prototype.insertAt = function insertAt(index, value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// <param name="value" type="PointKeyFrame">A param.</param>
/// </signature>
}
cls.prototype.removeAt = function removeAt(index) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="index" type="Number">A param.</param>
/// </signature>
}
cls.prototype.append = function append(value) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="value" type="PointKeyFrame">A param.</param>
/// </signature>
}
cls.prototype.removeAtEnd = function removeAtEnd() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.clear = function clear() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.getMany = function () {
}
cls.prototype.replaceAll = function replaceAll(items) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="items" type="Array<Object>">A param.</param>
/// </signature>
}
cls.prototype.first = function first() {
/// <signature>
/// <summary>Function summary.</summary>
/// <returns type="Object" />
/// </signature>
return new Object();
}
return cls;
}) ();
exports.PointKeyFrameCollection = PointKeyFrameCollection;
ColorKeyFrame = (function () {
var cls = function ColorKeyFrame() {
this.value = new Object();
this.keyTime = new KeyTime();
this.dispatcher = new Object();
};
cls.keyTimeProperty = new Object();
cls.valueProperty = new Object();
return cls;
}) ();
exports.ColorKeyFrame = ColorKeyFrame;
PointKeyFrame = (function () {
var cls = function PointKeyFrame() {
this.value = new Object();
this.keyTime = new KeyTime();
this.dispatcher = new Object();
};
cls.keyTimeProperty = new Object();
cls.valueProperty = new Object();
return cls;
}) ();
exports.PointKeyFrame = PointKeyFrame;
ColorAnimationUsingKeyFrames = (function () {
var cls = function ColorAnimationUsingKeyFrames() {
this.enableDependentAnimation = new Boolean();
this.keyFrames = new ColorKeyFrameCollection();
this.speedRatio = new Number();
this.repeatBehavior = new RepeatBehavior();
this.fillBehavior = new FillBehavior();
this.duration = new Duration();
this.beginTime = new Number();
this.autoReverse = new Boolean();
this.dispatcher = new Object();
};
cls.enableDependentAnimationProperty = new Object();
cls.allowDependentAnimations = new Boolean();
cls.autoReverseProperty = new Object();
cls.beginTimeProperty = new Object();
cls.durationProperty = new Object();
cls.fillBehaviorProperty = new Object();
cls.repeatBehaviorProperty = new Object();
cls.speedRatioProperty = new Object();
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callback){}
cls.prototype.off = function off(eventName, callback){}
return cls;
}) ();
exports.ColorAnimationUsingKeyFrames = ColorAnimationUsingKeyFrames;
DiscreteColorKeyFrame = (function () {
var cls = function DiscreteColorKeyFrame() {
this.value = new Object();
this.keyTime = new KeyTime();
this.dispatcher = new Object();
};
cls.keyTimeProperty = new Object();
cls.valueProperty = new Object();
return cls;
}) ();
exports.DiscreteColorKeyFrame = DiscreteColorKeyFrame;
DiscretePointKeyFrame = (function () {
var cls = function DiscretePointKeyFrame() {
this.value = new Object();
this.keyTime = new KeyTime();
this.dispatcher = new Object();
};
cls.keyTimeProperty = new Object();
cls.valueProperty = new Object();
return cls;
}) ();
exports.DiscretePointKeyFrame = DiscretePointKeyFrame;
DragItemThemeAnimation = (function () {
var cls = function DragItemThemeAnimation() {
this.targetName = new String();
this.speedRatio = new Number();
this.repeatBehavior = new RepeatBehavior();
this.fillBehavior = new FillBehavior();
this.duration = new Duration();
this.beginTime = new Number();
this.autoReverse = new Boolean();
this.dispatcher = new Object();
};
cls.targetNameProperty = new Object();
cls.allowDependentAnimations = new Boolean();
cls.autoReverseProperty = new Object();
cls.beginTimeProperty = new Object();
cls.durationProperty = new Object();
cls.fillBehaviorProperty = new Object();
cls.repeatBehaviorProperty = new Object();
cls.speedRatioProperty = new Object();
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callback){}
cls.prototype.off = function off(eventName, callback){}
return cls;
}) ();
exports.DragItemThemeAnimation = DragItemThemeAnimation;
DragOverThemeAnimation = (function () {
var cls = function DragOverThemeAnimation() {
this.toOffset = new Number();
this.targetName = new String();
this.direction = new Number();
this.speedRatio = new Number();
this.repeatBehavior = new RepeatBehavior();
this.fillBehavior = new FillBehavior();
this.duration = new Duration();
this.beginTime = new Number();
this.autoReverse = new Boolean();
this.dispatcher = new Object();
};
cls.directionProperty = new Object();
cls.targetNameProperty = new Object();
cls.toOffsetProperty = new Object();
cls.allowDependentAnimations = new Boolean();
cls.autoReverseProperty = new Object();
cls.beginTimeProperty = new Object();
cls.durationProperty = new Object();
cls.fillBehaviorProperty = new Object();
cls.repeatBehaviorProperty = new Object();
cls.speedRatioProperty = new Object();
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callback){}
cls.prototype.off = function off(eventName, callback){}
return cls;
}) ();
exports.DragOverThemeAnimation = DragOverThemeAnimation;
DrillInThemeAnimation = (function () {
var cls = function DrillInThemeAnimation() {
this.exitTargetName = new String();
this.exitTarget = new Object();
this.entranceTargetName = new String();
this.entranceTarget = new Object();
this.speedRatio = new Number();
this.repeatBehavior = new RepeatBehavior();
this.fillBehavior = new FillBehavior();
this.duration = new Duration();
this.beginTime = new Number();
this.autoReverse = new Boolean();
this.dispatcher = new Object();
};
cls.entranceTargetNameProperty = new Object();
cls.entranceTargetProperty = new Object();
cls.exitTargetNameProperty = new Object();
cls.exitTargetProperty = new Object();
cls.allowDependentAnimations = new Boolean();
cls.autoReverseProperty = new Object();
cls.beginTimeProperty = new Object();
cls.durationProperty = new Object();
cls.fillBehaviorProperty = new Object();
cls.repeatBehaviorProperty = new Object();
cls.speedRatioProperty = new Object();
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callb