UNPKG

@yoroi/banxa

Version:

The Banxa integration package of Yoroi SDK

8 lines (5 loc) 238 B
export type BanxaTheme = 'dark' | 'light' const supportedTheme: Readonly<BanxaTheme[]> = ['dark', 'light'] as const export function banxaIsTheme(value: any): value is BanxaTheme { return supportedTheme.includes(value as BanxaTheme) }