UNPKG

miniml

Version:

A minimal, embeddable semantic data modeling language for generating SQL queries from YAML model definitions. Inspired by LookML.

8 lines (7 loc) 305 B
export interface CollapseWhiteSpaceOptions { singleSpaced?: boolean; singleLine?: boolean; collapseSpaces?: boolean; unindent?: boolean; } export declare function collapseWhitespace(text: string, { singleSpaced, singleLine, collapseSpaces, unindent }?: CollapseWhiteSpaceOptions): string;