UNPKG

@votemike/property

Version:

Property class and related classes

9 lines (8 loc) 182 B
export interface FeeInterface { amount: number; } export default class Fee { amount: number; constructor(amount: number); static fromJson(json: FeeInterface): Fee; }