download
raw
604 Bytes
export 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>>;
}

Xet Storage Details

Size:
604 Bytes
·
Xet hash:
7ec950665d5c2b6c1561b7e9373627089f55d876b02dacd16b668a67d448feb4

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