Repository URL to install this package:
|
Version:
2.0.8 ▾
|
import isStringNotEmpty from './presets/isStringNotEmpty';
import isNotEmptyArray from './presets/isNotEmptyArray';
import isEmptyArray from './presets/isEmptyArray';
export * from './presets/typings';
export * from './presets/isStringNotEmpty';
export * from './presets/isStringOrNumber';
export { isStringNotEmpty as isNonEmptyString };
export { isNotEmptyArray };
export { isNotEmptyArray as isNonEmptyArray };
export { isEmptyArray };
declare const _default: {
isStringNotEmpty: typeof isStringNotEmpty;
isStringOrNumber: import("chain-able-deps/dist/typings/fp/curry").CurriedFunction1<{}, boolean>;
isNotEmptyArray: (x: any) => boolean;
isEmptyArray: <Type = any>(x: unknown) => x is import("./presets/isEmptyArray").EmptyArray<Type>;
};
export default _default;