10 lines
272 B
TypeScript
10 lines
272 B
TypeScript
// License: LGPL-3.0-or-later
|
|
import type { Amount, HoudiniObject, IdType, HouID } from "../common";
|
|
import type Nonprofit from './';
|
|
|
|
|
|
export interface Transaction extends HoudiniObject<HouID> {
|
|
amount: Amount;
|
|
nonprofit: IdType | Nonprofit;
|
|
object: 'transaction';
|
|
}
|