Skip to content

Commit

Permalink
Fix typo in types (#194)
Browse files Browse the repository at this point in the history
Nitpick: Just fixing a typo.
  • Loading branch information
andywer authored and Morley Zhi committed May 21, 2019
1 parent 5e8d7b2 commit 3ae7388
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,14 +140,14 @@ export const AuthRequiredFlag: 1;
export const AuthRevocableFlag: 2;
export const AuthImmutableFlag: 4;
export namespace AuthFlag {
type immutable = typeof AuthImmutableFlag;
type required = typeof AuthRequiredFlag;
type revocable = typeof AuthRevocableFlag;
type rmmutable = typeof AuthImmutableFlag;
}
export type AuthFlag =
| AuthFlag.immutable
| AuthFlag.required
| AuthFlag.revocable
| AuthFlag.rmmutable;
| AuthFlag.revocable;

export namespace Signer {
interface Ed25519PublicKey {
Expand Down

0 comments on commit 3ae7388

Please sign in to comment.