Skip to content

Commit

Permalink
chore: use enum
Browse files Browse the repository at this point in the history
  • Loading branch information
casperiv0 authored and edorivai committed Feb 19, 2024
1 parent b960198 commit 872c448
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/data/methods/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,14 @@ export interface Image {
svg: string;
}

export type MethodStatus = 'activated' | 'pending-boarding' | 'pending-review' | 'pending-external' | 'rejected';
export enum MethodStatus {
activated = 'activated',
pendingBoarding = 'pending-boarding',
pendingReview = 'pending-review',
pendingExternal = 'pending-external',
rejected = 'rejected',
}


export enum MethodImageSize {
size1x = 'size1x',
Expand Down

0 comments on commit 872c448

Please sign in to comment.