prntr
Version:
A tiny javascript library to help printing from the web. Print.js but modern and maintained.
8 lines (7 loc) • 322 B
TypeScript
import { IHtmlConfig } from './types';
export declare type ExtendedHtmlConfig = IHtmlConfig & {
frameId: string;
};
declare function html(config: ExtendedHtmlConfig, printFrame: HTMLIFrameElement): void;
export declare function collectStyles(element: HTMLElement, config: ExtendedHtmlConfig): string;
export { html };