houdini/docs/event_definitions/Nonprofit/index.ts

11 lines
232 B
TypeScript
Raw Normal View History

// License: LGPL-3.0-or-later
import type { HoudiniObject } from '../common';
/**
* A single nonprofit organization on Houdini.
*/
export default interface Nonprofit extends HoudiniObject {
name: string;
object: "nonprofit";
}