import { Length, List } from "."; /** * @since 0.0.2 */ export type IsEmpty = Length extends 0 ? true : false; /** * @since 0.0.2 */ export type IsEmptyList = T extends List ? IsEmpty : false; //# sourceMappingURL=is-empty.d.ts.map