From 4f06c2a09ef724255ea444a4deb3c8cd29025c70 Mon Sep 17 00:00:00 2001 From: Chris Bobbe Date: Tue, 29 Jun 2021 23:14:00 -0400 Subject: [PATCH] base-64 libdef: Make an object type exact. An instance of #3452. --- flow-typed/base-64_v0.1.x.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flow-typed/base-64_v0.1.x.js b/flow-typed/base-64_v0.1.x.js index f5b867676d2..378083fe671 100644 --- a/flow-typed/base-64_v0.1.x.js +++ b/flow-typed/base-64_v0.1.x.js @@ -2,7 +2,7 @@ // flow-typed version: c6154227d1/base-64_v0.1.x/flow_>=v0.25.x <=v0.103.x declare module 'base-64' { - declare module.exports: { + declare module.exports: {| version: string; /** * This function takes a byte string (the input parameter) and encodes it according to base64. @@ -22,5 +22,5 @@ declare module 'base-64' { * see: https://html.spec.whatwg.org/multipage/webappapis.html#dom-windowbase64-atob */ decode(input: string): string; - }; + |}; }