UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

11 lines 313 B
import { CurrencyCodeEnum } from './CurrencyCodeEnum'; /** LongPrice with all digits and its currency and a textual representation */ export interface LongPrice { /** */ currencyCode: CurrencyCodeEnum; /** */ text: string; /** */ value: number; } //# sourceMappingURL=LongPrice.d.ts.map