django-vue3-admin-web/node_modules/@fast-crud/fast-crud/dist/d/utils/util.string.d.ts
2025-10-20 21:21:14 +08:00

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;