UNPKG

217 BTypeScriptView Raw
1export declare type JSONCurrencyFormat = {
2 name: "currency";
3 variant: "iso4217" | "english" | "crypto" | "symbol";
4};
5export declare function inferCurrency(value: string): JSONCurrencyFormat | undefined;