houdini/docs/event_definitions/Nonprofit/Event/index.ts
2021-01-13 11:10:18 -06:00

14 lines
No EOL
339 B
TypeScript

// License: LGPL-3.0-or-later
import { IdType, HoudiniObject } from '../../common';
import Nonprofit from '../';
export default interface Event extends HoudiniObject {
end_date: Date;
name: string;
nonprofit: IdType | Nonprofit;
object: "event";
start_date: Date;
}
export * from './TicketLevel';
export * from './EventDiscount';