Project Files
dist / dictionaries / en-filler.d.ts
/**
* English filler words organized by compression level.
* Source: Linguistic research, NLP resources, COCA frequency lists
*/
export declare const EN_GENTLE: string[];
export declare const EN_BALANCED: string[];
export declare const EN_AGGRESSIVE: string[];
export declare const EN_BLACKLIST: {
gentle: string[];
balanced: string[];
aggressive: string[];
};