captide
Version:
Get millions of financial documents into your AI app 🚀
14 lines (13 loc) • 472 B
TypeScript
import { FileType } from '@types';
/**
* Helper function to check if document is a proxy statement
*/
export declare const isProxyStatement: (formType: string) => boolean;
/**
* Helper function to check if document is an IR document
*/
export declare const isIRDocument: (formType: string) => boolean;
/**
* Helper function to check if document is a binary document (PDF)
*/
export declare const isBinaryDocument: (formType: string, fileType?: FileType) => boolean;