import { cryptly } from "cryptly" import { isly } from "isly" export interface PaxGiro { type: "paxgiro" identifier: cryptly.Identifier } export namespace PaxGiro { export const currencies = ["EUR", "GBP", "SEK", "USD"] as const export const type = isly.object({ type: isly.string("paxgiro"), identifier: isly.string() }) }