타입스크립트에서의 인덱스드 액세스 타입만약에 밑과 같은 Post라는 객체가 있을 때 Post안에 author를 출력한다고 치자1234567891011121314151617181920212223//인덱스드 액세스 타입 interface Post { title: string; content: string; author : { id: number; name: string; };} const post: Post { title: computer ko, content: typescript, author: { id: 1, name: go, },}; function printAuthorInfo(author: { id: numb..