Create the shell of a Transaction object

This commit is contained in:
Eric Schultz 2021-01-21 11:31:28 -06:00 committed by Eric Schultz
parent 69b6141652
commit a7a4ce1f50

View file

@ -0,0 +1,10 @@
// License: LGPL-3.0-or-later
import type { Amount, HoudiniObject, IdType, UuidType } from "../common";
import type Nonprofit from './';
export interface Transaction extends HoudiniObject<UuidType> {
amount: Amount;
nonprofit: IdType | Nonprofit;
object: 'transaction';
}