728x90
이해해보자
export interface ErrorResponse {}
export const isErrorResponse = (x: unknown): x is ErrorResponse => {
return (typeof x === 'string' || typeof x === 'object') && x !== null;
};
728x90
'Typescript' 카테고리의 다른 글
[Typescript] <T>가 뭐니? (0) | 2022.11.06 |
---|---|
[Typescript] type과 interface의 차이 (0) | 2022.10.12 |
[Typescript] Omit? Partial? Pick? (0) | 2022.10.11 |
Typescript + React 컴포넌트 간에 props 데이터 전달 중 발생한 문제 (0) | 2021.07.11 |
댓글