import { Length, List } from "."; /** * extracts the head of list `L`. * if `L` is empty, resolves to `never` * * @since 0.0.2 */ export type Head = Length extends 0 ? never : L[0]; //# sourceMappingURL=head.d.ts.map