declare global { interface String { /** * Returns `true` if the string is not empty and contains at least one non-blank character. * * @example * ```typescript * ''.isNotBlank(); // => false * ' '.isNotBlank(); // => false * 'hello'.isNotBlank(); // => true * ' hello '.isNotBlank(); // => true * ``` * * @see {@link String#isBlank} */ isNotBlank(): boolean; } } export {}; //# sourceMappingURL=isNotBlank.d.ts.map