Add index signature to options parameter of 'uniform'.

This commit is contained in:
Daniel Rosenwasser
2015-08-11 17:02:18 -07:00
parent a7fb3bdf5c
commit 996944493f

View File

@@ -35,7 +35,7 @@ interface UniformOptions {
wrapperClass?: string;
}
interface Uniform {
(options?: UniformOptions): JQuery;
(options?: UniformOptions & {[option: string]: any;}): JQuery;
update(elemOrSelector?: any): void;
restore(elemOrSelector?: any): void;
elements: JQuery[];