Skip to content

Commit

Permalink
languages.js types: Make Language exact.
Browse files Browse the repository at this point in the history
An instance of #3452.
  • Loading branch information
chrisbobbe authored and gnprice committed Mar 12, 2021
1 parent 338113d commit ed1afb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/settings/languages.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/* @flow strict-local */

export type Language = {
export type Language = {|
locale: string,
name: string,
nativeName: string,
};
|};

/**
* The set of languages we offer in the language settings screen.
Expand Down

0 comments on commit ed1afb6

Please sign in to comment.