Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- You are importing createRoot from "react-dom" which is not supported. You should instead import it from "react-dom/client"
- 모던자바스크립트
- Spring-Framework
- spring-boot
- 따라하며 배우는 노드 리액트 기본 강의
- Colaboratory 글자 깨짐
- 자바스크립트
- 거북이 대포 게임
- intellij
- intllij 내 Bean을 찾지 못해서 발생하는 오류
- Do it 자바스크립트 + 제이쿼리 입문
- googleColaboratory
- node.js로 로그인하기
- 노드에 리액트 추가하기
- 계산맞추기 게임
- props
- Python
- JS 개념
- react
- node.js 설치
- Concurrently
- ReactDOM.render is no longer supported in React 18. Use createRoot instead
- 타자 게임 만들기
- 인프런
- 리액트
- DB Browser
- react오류
- 모두의 파이썬
- 웹 게임을 만들며 배우는 리액트
- vs code 내 node
Archives
- Today
- Total
프로그래밍 삽질 중
[TS] (utility types) infer 타입 분석 본문
출처 : https://github.com/ZeroCho/ts-all-in-one
https://github.com/microsoft/TypeScript/blob/main/lib/lib.es5.d.ts
* [lib.ex5.d.ts] Parameters, ReturnType | ConstructorParameters, InstanceType
type Parameters<T extends (...args: any) => any> = T extends (...args: infer P) => any ? P : never;
type ReturnType<T extends (...args: any) => any> = T extends (...args: any) => infer R ? R : any;
//생성자 대상
type ConstructorParameters<T extends abstract new (...args: any) => any> = T extends abstract new (...args: infer P) => any ? P : never;
type InstanceType<T extends abstract new (...args: any) => any> = T extends abstract new (...args: any) => infer R ? R : any;
▶ 어떤 함수의 매개변수와 리턴값이 {number, string, boolean} 일 때 직접 하드코딩이 아닌 함수에서 가져올 수 있음(자동으로 읽어올 수 있음)
* Parameters | ReturnType
▶ 타입 혹은 리턴값도 배열처럼 접근 가능
function zip(x: number, y: string, z: boolean): {x: number, y: string, z: boolean} {
return {x,y,z}
}
type Params = Parameters<typeof zip>
type Ret = ReturnType<typeof zip>
type First = Params[0] //number
type Second = Params[1] //string
type Third = Params[2] //boolean
type ReFirst = Ret["x"] //number
type ReSecond = Ret["y"] //string
type ReThird = Ret["z"] //boolean
* Parameters를 type P로 만들 경우 | ReturnType을 type Re로 만들 경우
function zip(x: number, y: string, z: boolean): {x: number, y: string, z: boolean} {
return {x,y,z}
}
//T = 함수(함수를 제한둠 = extends(...args: any)=> any)
//infer : 알아서 추론, 추론값이 있으면 P
type P<T extends(...args: any)=> any> = T extends (...args: infer P) => any ? P : never;
type Re<T extends(...args: any)=> any> = T extends (...args: any) => infer P ? P : never;
type Params = P<typeof zip>
type Ret = Re<typeof zip>
type First = Params[0] //number
type Second = Params[1] //string
type Third = Params[2] //boolean
type ReFirst = Ret["x"] //number
type ReSecond = Ret["y"] //string
type ReThird = Ret["z"] //boolean
* ConstructorParameters | InstanceType
▶ 클래스는 타입으로 바로 사용 가능
▶ 인스턴스 = new 붙여서 실제 객체로 만든 것
[TS]
class A {
a: string;
b: number;
c: boolean;
constructor(a: string, b: number, c: boolean) {
this.a = a;
this.b = b;
this.c = c;
}
}
const c = new A('123', 456, true);
//type C = a: string, b: number, c: boolean
type C = ConstructorParameters<typeof A> //typeof 클래스가 생성자
//type I = A
type I = InstanceType<typeof A>
//클래스는 타입으로 바로 사용 가능
//인스턴스 = new 붙여서 실제 객체로 만든 것
const a2 : A = new A('123', 456, true)
[TS → JS로 변환할 경우]
"use strict";
class A {
constructor(a, b, c) {
this.a = a;
this.b = b;
this.c = c;
}
}
const c = new A('123', 456, true);
const a2 = new A('123', 456, true);
'과거 프로그래밍 자료들 > Javascript&typescript' 카테고리의 다른 글
[TS] bind (1) | 2022.09.20 |
---|---|
[TS] Promise, Awaited (1) | 2022.09.20 |
[TS] (utility types)Required, Record, NonNullable 타입 분석 (0) | 2022.09.18 |
[TS] (utility types)Partial, Pick & Omit, Exclude, Extract 타입 분석 (0) | 2022.09.18 |
[TS] 에러 처리법(interface, class 차이 비교) (0) | 2022.09.18 |