Skip to content

findRemote

리포지토리에서 특정 리모트를 찾아요.

시그니처

ts
class Repository {
  findRemote(name: string): Remote | null;
}

파라미터

  • name필수 · string

    조회할 리모트의 이름이에요.

반환 값

  • null | Remote

    주어진 이름에 해당하는 리모트를 반환해요. 리모트가 존재하지 않으면 null을 반환해요.

MIT 라이선스에 따라 배포됩니다.