Skip to content

Commit

Permalink
base-64 libdef: Make an object type exact.
Browse files Browse the repository at this point in the history
An instance of zulip#3452.
  • Loading branch information
chrisbobbe authored and gnprice committed Jul 2, 2021
1 parent aceaaca commit 4f06c2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flow-typed/base-64_v0.1.x.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -22,5 +22,5 @@ declare module 'base-64' {
* see: https://html.spec.whatwg.org/multipage/webappapis.html#dom-windowbase64-atob
*/
decode(input: string): string;
};
|};
}

0 comments on commit 4f06c2a

Please sign in to comment.