houdini/docs/event_definitions/Nonprofit/Supporter/index.ts
2021-01-17 17:08:52 -06:00

14 lines
351 B
TypeScript

// License: LGPL-3.0-or-later
import type { IdType, HoudiniObject } from '../../common';
import type Nonprofit from '../';
export default interface Supporter extends HoudiniObject {
deleted: boolean;
email: string;
name: string;
nonprofit: IdType | Nonprofit;
object: "supporter";
organization: string;
}
export * from './SupporterNote';