UNPKG

@bradymholt/ampify

Version:

Convert plain HTML to Google Accelerated Mobile Pages (AMP)

11 lines (8 loc) 195 B
declare module "@bradymholt/ampify" { export = ampify; } declare function ampify(html: string, options?: IOptions): Promise<string>; interface IOptions { cwd?: string; round?: boolean; }