diff --git a/types/angular/jqlite.d.ts b/types/angular/jqlite.d.ts index 016411c848..7c8975b8bb 100644 --- a/types/angular/jqlite.d.ts +++ b/types/angular/jqlite.d.ts @@ -169,7 +169,7 @@ interface JQuery { * @param properties An object of property-value pairs to set. * @see {@link https://api.jquery.com/css/#css-properties} */ - css(properties: JQueryCssProperties): JQuery; + css(properties: JQLiteCssProperties): JQuery; /** * Store arbitrary data associated with the matched elements. @@ -799,6 +799,6 @@ interface JQueryEventObject extends BaseJQueryEventObject, JQueryInputEventObjec interface cssPropertySetter { (index: number, value?: string): string | number; } -interface JQueryCssProperties { +interface JQLiteCssProperties { [propertyName: string]: string | number | cssPropertySetter; }