본문 바로가기
Typescript

[Typescript] 타입가드란? 사용법

by devebucks 2022. 11. 6.
728x90

이해해보자

export interface ErrorResponse {}

export const isErrorResponse = (x: unknown): x is ErrorResponse => {
  return (typeof x === 'string' || typeof x === 'object') && x !== null;
};
728x90

댓글