import { tags } from "typia"; import { IPaymentSource } from "./IPaymentSource"; export interface IPaymentCancelHistory { reason: string; price: number & tags.Minimum<0>; created_at: string & tags.Format<"date-time">; } export declare namespace IPaymentCancelHistory { interface IStore { source: IPaymentSource; password: string; price: number & tags.Minimum<0>; reason: string; account: null | IBankAccount; } interface IBankAccount { bank: string; account: string; holder: string; mobile: string; } interface IProps { data: object; created_at: Date; price: number; reason: string; } }