소스 검색

Fixes lint error

main
Eric Amodio 3 년 전
부모
커밋
b6352078ec
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/system/decorators/timeout.ts

+ 1
- 1
src/system/decorators/timeout.ts 파일 보기

@ -49,7 +49,7 @@ export function timeout(timeoutOrTimeoutFromLastArg: number | boolean, defaultTi
const id = setTimeout(() => {
clearTimeout(id);
reject(new CancellationError(result, `Timed out after ${timeout} ms`));
}, timeout!);
}, timeout);
}),
]);
};

불러오는 중...
취소
저장