10 lines
213 B
TypeScript
10 lines
213 B
TypeScript
import { Wallet } from './wallet.entity';
|
|
export declare class WalletTransaction {
|
|
id: string;
|
|
wallet: Wallet;
|
|
type: string;
|
|
amount: number;
|
|
description?: string | null;
|
|
createdAt: Date;
|
|
}
|