Skip to content

Commit

Permalink
zulipVersion types: 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 committed Mar 10, 2021
1 parent 393826f commit 870c20a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/zulipVersion.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
/* @flow strict-local */
/* eslint-disable no-underscore-dangle */

type VersionElements = {
type VersionElements = {|
major: number | void,
minor: number | void,
patch: number | void,
flag: 'dev' | ['rc', number] | void,
numCommits: number | void,
commitId: string | void,
};
|};

/**
* Parsed form of a Zulip server version.
Expand Down

0 comments on commit 870c20a

Please sign in to comment.