1**. 인터페이스 만들기**

  1. 인터페이스 만들기

    interface Student {
    
    }
    
  2. 인터페이스 정의하기

    interface Student {
    	studentID : number;
    	studentName: string;
    	age : number;
    }
    
  3. 완성된 인터페이스는 타입으로써 사용 가능하다.

2. 인터페이스 사용하기

3**. 인터페이스 응용 - 선택적 프로퍼티**

4. 메소드

5. Readonly 속성