@thatcompany/ts-tool
Version:
基于TypeScript编写的工具库
11 lines (10 loc) • 408 B
TypeScript
import { Empty, EmptyArgs } from './Empty';
import { Equal } from './Equal';
export declare class Objects {
static isEmpty: typeof Empty.isEmpty;
static isEmptyArgs: typeof Empty.isEmptyArgs;
static ofEmptyArgs: (args: Object) => EmptyArgs;
static equals: typeof Equal.isEqual;
static ofNullable: typeof Empty.ofNullable;
static notEmpty: (value: any, strict?: boolean) => boolean;
}