@readium/navigator
Version:
Next generation SDK for publications in Web Apps
13 lines (12 loc) • 408 B
TypeScript
/**
* Utilities for processing CSS and JavaScript content
*/
/**
* Minifies JavaScript by removing comments and normalizing whitespace
*/
export declare const stripJS: (source: string) => string;
/**
* Minifies CSS by removing comments and normalizing whitespace
* Note: URL resolution should be handled by the caller with correct context
*/
export declare const stripCSS: (source: string) => string;