728x90
typescript 핸드북 학습내용 정리
https://typescript-kr.github.io/pages/the-handbook.html
유틸리티 타입
Partial<T>
T의 모든 프로퍼티를 선택적으로 만드는 타입을 구성함.
interface Todo {
title: string;
description: string;
}
function updateTodo(todo: Todo, fieldsToUpdate: Partial<Todo>) {
return { ...todo, ...fieldsToUpdate };
}
const todo1 = {
title: 'organize desk',
description: 'clear clutter',
};
const todo2 = updateTodo(todo1, {
description: 'throw out trash',
});
Readonly<T>
T의 모든 프로퍼티를 읽기전용으로 설정한 타입을 구성함.
interface Todo {
title: string;
}
const todo: Readonly<Todo> = {
title: 'Delete inactive users',
};
todo.title = 'Hello'; // 오류: 읽기 전용 프로퍼티에 재할당할 수 없음
런타임에 실패할 할당 표현식을 나타낼때 유용함.
// frozen 객체의 프로퍼티에 재할당 하려고 하는 경우
// Object.freeze
function freeze<T>(obj: T): Readonly<T>;
Record<K, T>
타입 T의 프로퍼티 집합 K로 타입을 구성함.
interface PageInfo {
title: string;
}
type Page = 'home' | 'about' | 'contact';
const x: Record<Page, PageInfo> = {
about: { title: 'about' },
contact: { title: 'contact' },
home: { title: 'home' },
};
Pick<T, K>
T에서 프로퍼티 K의 집합을 선택해 타입을 구성함
interface Todo {
title: string;
description: string;
completed: boolean;
}
type TodoPreview = Pick<Todo, 'title' | 'completed'>;
const todo: TodoPreview = {
title: 'Clean room',
completed: false,
};
Omit<T, K>
T에서 K를 제거한 타입을 구성함
interface Todo {
title: string;
description: string;
completed: boolean;
}
type TodoPreview = Omit<Todo, 'description'>;
const todo: TodoPreview = {
title: 'Clean room',
completed: false,
};
Exclude<T, U>
T에서 U에 할당할 수 있는 모든 속성을 제외한 타입을 구성함
type T0 = Exclude<"a" | "b" | "c", "a">; // "b" | "c"
type T1 = Exclude<"a" | "b" | "c", "a" | "b">; // "c"
type T2 = Exclude<string | number | (() => void), Function>; // string | number
Extract<T, U>
T에서 U에 할당할 수 있는 모든 속성을 추출하여 타입을 구성함
type T0 = Extract<"a" | "b" | "c", "a" | "f">; // "a"
type T1 = Extract<string | number | (() => void), Function>; // () => void
NonNullable<T>
T에서 null과 undefined를 제외한 타입을 구성함.
type T0 = NonNullable<string | number | undefined>; // string | number
type T1 = NonNullable<string[] | null | undefined>; // string[]
Parameters<T>
함수 타입 T의 매개변수타입들의 튜플타입을 구성함
declare function f1(arg: { a: number, b: string }): void
type T0 = Parameters<() => string>; // []
type T1 = Parameters<(s: string) => void>; // [string]
type T2 = Parameters<(<T>(arg: T) => T)>; // [unknown]
type T4 = Parameters<typeof f1>; // [{ a: number, b: string }]
type T5 = Parameters<any>; // unknown[]
type T6 = Parameters<never>; // never
type T7 = Parameters<string>; // 오류
type T8 = Parameters<Function>; // 오류
ConstructorParameters<T>
생성자 함수 타입의 모든 매개변수 타입을 추출할 수 있게 해줌.
모든 매개변수 타입을 가지는 튜플 타입(T가 함수가 아닌 경우 never)을 생성함.
type T0 = ConstructorParameters<ErrorConstructor>; // [(string | undefined)?]
type T1 = ConstructorParameters<FunctionConstructor>; // string[]
type T2 = ConstructorParameters<RegExpConstructor>; // [string, (string | undefined)?]
ReturnType<T>
함수 T의 반환타입으로 구성된 타입을 만듭니다.
declare function f1(): { a: number, b: string }
type T0 = ReturnType<() => string>; // string
type T1 = ReturnType<(s: string) => void>; // void
type T2 = ReturnType<(<T>() => T)>; // {}
type T3 = ReturnType<(<T extends U, U extends number[]>() => T)>; // number[]
type T4 = ReturnType<typeof f1>; // { a: number, b: string }
type T5 = ReturnType<any>; // any
type T6 = ReturnType<never>; // any
type T7 = ReturnType<string>; // 오류
type T8 = ReturnType<Function>; // 오류
InstanceType<T>
생성자 함수 타입 T의 인스턴스 타입으로 구성된 타입을 만듬
class C {
x = 0;
y = 0;
}
type T0 = InstanceType<typeof C>; // C
type T1 = InstanceType<any>; // any
type T2 = InstanceType<never>; // any
type T3 = InstanceType<string>; // 오류
type T4 = InstanceType<Function>; // 오류
Requierd<T>
T의 모든 프로퍼티가 필수로 설정된 타입을 구성함
interface Props {
a?: number;
b?: string;
};
const obj: Props = { a: 5 }; // 성공
const obj2: Required<Props> = { a: 5 }; // 오류: 프로퍼티 'b'가 없습니다
ThisParameterType
함수 타입의 this 매개변수의 타입, this가 없을 경우 unknown을 추출함.
–strictFunctionTypes가 활성화되었을 때만 올바르게 동작함
function toHex(this: Number) {
return this.toString(16);
}
function numberToString(n: ThisParameterType<typeof toHex>) {
return toHex.apply(n);
}
OmitThisParameter
함수 타입에서 ‘this’ 매개변수를 제거함
–strictFunctionTypes가 활성화되었을 때만 올바르게 동작함
function toHex(this: Number) {
return this.toString(16);
}
// `bind`의 반환 타입은 이미 `OmitThisParameter`을 사용하고 있습니다, 이는 단지 예제를 위한 것입니다.
const fiveToHex: OmitThisParameter<typeof toHex> = toHex.bind(5);
console.log(fiveToHex());
ThisType<T>
변형된 타입을 반환하지 않음. 문맥적 this 타입에 표시하는 역할을 함
// --noImplicitThis 로 컴파일
type ObjectDescriptor<D, M> = {
data?: D;
methods?: M & ThisType<D & M>; // 메서드 안의 'this 타입은 D & M 입니다.
}
function makeObject<D, M>(desc: ObjectDescriptor<D, M>): D & M {
let data: object = desc.data || {};
let methods: object = desc.methods || {};
return { ...data, ...methods } as D & M;
}
let obj = makeObject({
data: { x: 0, y: 0 },
methods: {
moveBy(dx: number, dy: number) {
this.x += dx; // 강하게 타입이 정해진 this
this.y += dy; // 강하게 타입이 정해진 this
}
}
});
obj.x = 10;
obj.y = 20;
obj.moveBy(5, 5);
'공부공부 > TS' 카테고리의 다른 글
[typescript 핸드북] 10. 모듈 해석 (0) | 2024.02.19 |
---|---|
[typescript 핸드북] 09. 모듈 (0) | 2024.02.19 |
[typescript 핸드북] 07. 제네릭 (0) | 2024.02.19 |
[typescript 핸드북] 06. 열거형 (0) | 2024.02.19 |
[typescript 핸드북] 05. 유니언과 교차 타입 (0) | 2024.02.19 |