UNPKG

captide

Version:

Get hundreds of thousands of financial documents into your AI app 🚀

25 lines (24 loc) • 850 B
/** * Generate general document styles that apply to all document types */ export declare const generateGeneralStyles: (zoomLevel: number) => string; /** * Styles for 8-K and proxy statement documents */ export declare const generatePageBasedDocumentStyles: (zoomLevel: number) => string; /** * Styles for international filings (20-F, 40-F, 6-K, S-1) */ export declare const generateInternationalFilingStyles: (zoomLevel: number) => string; /** * Styles for the shareable link button */ export declare const generateShareableLinkButtonStyles: (buttonColor: string) => string; /** * Specific styles for 10-K and 10-Q financial filings */ export declare const generateFinancialFilingStyles: (zoomLevel: number) => string; /** * Base HTML template for the iframe */ export declare const getBaseHtmlTemplate: (htmlContent: string) => string;