summaryrefslogtreecommitdiff
path: root/cli/tsc/dts/lib.es2015.proxy.d.ts
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2022-12-07 12:59:59 -0500
committerGitHub <noreply@github.com>2022-12-07 12:59:59 -0500
commitf4385866f89e0abd3f5f1b0281abf00f1c562be9 (patch)
tree3400cc38b77f1217250d671481a4113e141a80f9 /cli/tsc/dts/lib.es2015.proxy.d.ts
parent791e623c321dd9cc73263a64aa848af0111a812b (diff)
feat: upgrade to TypeScript 4.9.3 (#16973)
Updated from: https://github.com/denoland/TypeScript/pull/2
Diffstat (limited to 'cli/tsc/dts/lib.es2015.proxy.d.ts')
-rw-r--r--cli/tsc/dts/lib.es2015.proxy.d.ts2
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;