diff options
Diffstat (limited to 'cli/tsc/dts/lib.es2017.object.d.ts')
-rw-r--r-- | cli/tsc/dts/lib.es2017.object.d.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/tsc/dts/lib.es2017.object.d.ts b/cli/tsc/dts/lib.es2017.object.d.ts index fd7dd4d92..af9ef2f98 100644 --- a/cli/tsc/dts/lib.es2017.object.d.ts +++ b/cli/tsc/dts/lib.es2017.object.d.ts @@ -21,7 +21,7 @@ interface ObjectConstructor { * Returns an array of values of the enumerable properties of an object * @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object. */ - values<T>(o: { [s: string]: T } | ArrayLike<T>): T[]; + values<T>(o: { [s: string]: T; } | ArrayLike<T>): T[]; /** * Returns an array of values of the enumerable properties of an object @@ -33,7 +33,7 @@ interface ObjectConstructor { * Returns an array of key/values of the enumerable properties of an object * @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object. */ - entries<T>(o: { [s: string]: T } | ArrayLike<T>): [string, T][]; + entries<T>(o: { [s: string]: T; } | ArrayLike<T>): [string, T][]; /** * Returns an array of key/values of the enumerable properties of an object @@ -45,5 +45,5 @@ interface ObjectConstructor { * Returns an object containing all own property descriptors of an object * @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object. */ - getOwnPropertyDescriptors<T>(o: T): {[P in keyof T]: TypedPropertyDescriptor<T[P]>} & { [x: string]: PropertyDescriptor }; + getOwnPropertyDescriptors<T>(o: T): { [P in keyof T]: TypedPropertyDescriptor<T[P]>; } & { [x: string]: PropertyDescriptor; }; } |