houdini/docs/event_definitions/Nonprofit/Event/index.ts

16 lines
398 B
TypeScript
Raw Normal View History

2021-01-11 22:34:48 +00:00
// License: LGPL-3.0-or-later
import { IDType, HoudiniObject } from '../../common';
import Nonprofit from '..';
2021-01-11 22:34:48 +00:00
export default interface Event extends HoudiniObject {
end_date: Date;
name: string;
nonprofit: IDType | Nonprofit;
2021-01-11 22:34:48 +00:00
object: "event";
start_date: Date;
}
export * from './TicketLevel';
2021-02-02 21:04:53 +00:00
export * from './EventDiscount';
export * from './TicketPurchase';
export * from './Ticket';