Ensure relevant css overload is part of jquery.transit

This commit is contained in:
John Reilly
2015-01-19 16:43:02 +00:00
parent 9f719ecd26
commit 5a56463ace
+8
View File
@@ -25,4 +25,12 @@ interface JQuery {
transition(options: JQueryTransitOptions, duration: number, easing: string): JQuery;
transition(options: JQueryTransitOptions, complete: () => void): JQuery;
transition(options: JQueryTransitOptions, duration: number, easing: string, complete: () => void): JQuery;
/**
* Set one or more CSS properties for the set of matched elements.
*
* @param propertyName A CSS property name.
* @param value A value to set for the property.
*/
css(propertyName: string, value: number[]): JQuery;
}