Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
marcaaron committed Sep 6, 2023
1 parent 1d633eb commit 060d6c1
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions src/types/onyx/Card.ts
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
import {ValueOf} from 'type-fest';
import CONST from '../../CONST';

type State =
3 /* OPEN */ |
4 /* NOT_ACTIVATED */ |
5 /* STATE_DEACTIVATED */ |
6 /* CLOSED */ |
7 /* STATE_SUSPENDED */;
type State = 3 /* OPEN */ | 4 /* NOT_ACTIVATED */ | 5 /* STATE_DEACTIVATED */ | 6 /* CLOSED */ | 7 /* STATE_SUSPENDED */;

type Card = {
cardID: number;
state: State,
state: State;
bank: string;
availableSpend: number;
domainName: string;
Expand Down

0 comments on commit 060d6c1

Please sign in to comment.