From 9af12a353b707f0820956b525bbf6e998e02ab00 Mon Sep 17 00:00:00 2001 From: Ryan Cebulko Date: Wed, 12 May 2021 18:19:31 -0400 Subject: [PATCH] Fix log type decl --- src/log.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/log.js b/src/log.js index ebfa4a9adf83..3c1e6f65bb35 100644 --- a/src/log.js +++ b/src/log.js @@ -187,7 +187,7 @@ export class Log { // migrated to an AMP-independent form for use in core. This binding allows // Log assertion helpers to maintain message-extraction capabilities until // that logic can be moved to core. - this.boundAssertFn_ = /** @type {!AssertionFunction} */ ( + this.boundAssertFn_ = /** @type {!assertions.AssertionFunctionDef} */ ( this.assert.bind(this) ); }