다음을 통해 공유


NoErrorCallback type

오류가 아닌 결과 값이 하나 있는 콜백을 설명하는 형식을 정의합니다.

type NoErrorCallback<TResult> = (result?: TResult) => void