@tiny-css/compiler
Version:
The compiler for compiling & reducing the bundle size of tiny-css
9 lines (8 loc) • 320 B
TypeScript
import { IOptions } from "glob";
/**
* @description reads html files and returns an array of classes
* @author KR Tirtho
* @param {string} pattern glob pattern for path
* @return {*} {(Promise<string[]|false>)}
*/
export declare function getClassnames(pattern: string, opts?: IOptions): Promise<string[] | false>;