UNPKG

@swingby-protocol/sdk

Version:

An implementation of the Swingby standard development kit for NodeJS and JavaScript.

5 lines (3 loc) 199 B
export const MODES = ['test', 'production'] as const; export type SkybridgeMode = typeof MODES[number]; export const isSkybridgeMode = (value: any): value is SkybridgeMode => MODES.includes(value);