Typescript 숫자 리터럴 유형 X + Y 방법(합계)
이제 당신은 알고
type CreateArrayWithLengthX<
LENGTH extends number,
ACC extends unknown[] = [],
> = ACC['length'] extends LENGTH
? ACC
: CreateArrayWithLengthX<LENGTH, [...ACC,1]>
type AddTwoNumber<T extends number, U extends number> =
[...CreateArrayWithLengthX<T>,...CreateArrayWithLengthX<U>]['length']
type A = AddTwoNumber<999,999> //1998
playground
제한: TS 재귀의 최대 깊이가 1000이기 때문에 숫자는 999를 초과할 수 없으며 양의 정수로만 작동합니다.
찾고있는
Reference
이 문제에 관하여(Typescript 숫자 리터럴 유형 X + Y 방법(합계)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/tylim88/typescript-add-two-numeric-literal-types-92n텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)