UNPKG

assertior

Version:

Assertion library with soft assertions

8 lines (7 loc) 512 B
declare function objectIsNotEmpty(expected: any, message?: string, _isSoft?: boolean): void; declare function objectIsEmpty(expected: any, message?: string, _isSoft?: boolean): void; declare function objectIncludesKeys(object: any, keys: string[], message?: string, _isSoft?: boolean): void; declare function objectIncludesMembers(expected: any, actual: { [k: string]: any; }, message?: string, _isSoft?: boolean): void; export { objectIncludesKeys, objectIncludesMembers, objectIsNotEmpty, objectIsEmpty };