download
raw
609 Bytes
export declare namespace enumUtil {
type UnionToIntersectionFn<T> = (T extends unknown ? (k: () => T) => void : never) extends (k: infer Intersection) => void ? Intersection : never;
type GetUnionLast<T> = UnionToIntersectionFn<T> extends () => infer Last ? Last : never;
type UnionToTuple<T, Tuple extends unknown[] = []> = [T] extends [never] ? Tuple : UnionToTuple<Exclude<T, GetUnionLast<T>>, [GetUnionLast<T>, ...Tuple]>;
type CastToStringTuple<T> = T extends [string, ...string[]] ? T : never;
export type UnionToTupleString<T> = CastToStringTuple<UnionToTuple<T>>;
export {};
}

Xet Storage Details

Size:
609 Bytes
·
Xet hash:
669b3fbd8e81f9603ed3ad98edfe4604bc756c32cfd80df53e8f8352fb913955

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.