diff options
Diffstat (limited to 'cli/tsc/dts/lib.es2015.proxy.d.ts')
-rw-r--r-- | cli/tsc/dts/lib.es2015.proxy.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tsc/dts/lib.es2015.proxy.d.ts b/cli/tsc/dts/lib.es2015.proxy.d.ts index c24186615..8c465ab06 100644 --- a/cli/tsc/dts/lib.es2015.proxy.d.ts +++ b/cli/tsc/dts/lib.es2015.proxy.d.ts @@ -98,7 +98,7 @@ interface ProxyHandler<T extends object> { * @param target The original object which is being proxied. * @param p The name or `Symbol` of the property to set. * @param receiver The object to which the assignment was originally directed. - * @returns `A `Boolean` indicating whether or not the property was set. + * @returns A `Boolean` indicating whether or not the property was set. */ set?(target: T, p: string | symbol, newValue: any, receiver: any): boolean; |