Skip to content

Commit

Permalink
Enum FeatureId
Browse files Browse the repository at this point in the history
  • Loading branch information
jordankzf committed Jun 28, 2024
1 parent 55d7322 commit 9d8d274
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions types/api/xverse/appFeatures.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import { NetworkType } from '../../network';

export type FeatureId = 'RUNES_SUPPORT' | 'SWAPS' | 'RUNES_LISTING';

export enum FeatureId {
RUNES_SUPPORT = 'RUNES_SUPPORT',
RUNES_LISTING = 'RUNES_LISTING',
SWAPS = 'SWAPS',
PAYPAL = 'PAYPAL',
}
export type AppFeaturesContext = {
network: NetworkType;
paymentAddress: string;
Expand Down

0 comments on commit 9d8d274

Please sign in to comment.