UNPKG

propublica-nonprofit-explorer-sdk

Version:
11 lines (10 loc) 229 B
/** * Form Type */ export declare const FORMTYPE: { '990': number; '990_EZ': number; '990_PF': number; }; export type FORMTYPEKey = keyof typeof FORMTYPE; export type FORMTYPEValue = (typeof FORMTYPE)[FORMTYPEKey];