declare global { interface String { /** * Returns `true` if the string is not empty. * * @example * ```typescript * ''.isNotEmpty(); // => false * ' '.isNotEmpty(); // => true * ``` * * @see {@link String#isEmpty} */ isNotEmpty(this: S): this is Exclude; } } export {}; //# sourceMappingURL=isNotEmpty.d.ts.map