UNPKG

@thisisagile/easy

Version:

Straightforward library for building domain-driven microservice architectures

8 lines (7 loc) 165 B
export type Currency = { id: string; name: string; digits: number; code: string; }; export declare const isCurrency: (c?: unknown) => c is Currency;