10 lines
319 B
TypeScript
10 lines
319 B
TypeScript
declare function isEmpty(value?: string | null): boolean;
|
|
declare function isAllEmpty(...values: any): boolean;
|
|
declare function hasEmpty(...values: any): boolean;
|
|
declare const StringUtils: {
|
|
isEmpty: typeof isEmpty;
|
|
isAllEmpty: typeof isAllEmpty;
|
|
hasEmpty: typeof hasEmpty;
|
|
};
|
|
export default StringUtils;
|