17 lines
311 B
TypeScript
17 lines
311 B
TypeScript
import UserData from '../../common/UserData';
|
|
|
|
interface ApplyTip {
|
|
id: number;
|
|
left: string;
|
|
price: string;
|
|
user: UserData;
|
|
timestamp?: number;
|
|
type: string;
|
|
total: string;
|
|
connected_order_id: number;
|
|
transaction: boolean;
|
|
hex_raw_proposal?: string;
|
|
isInstant?: boolean;
|
|
}
|
|
|
|
export default ApplyTip;
|