개발/Typescript

type-index

반응형
interface Props{
    name:string
    //배열에 인덱스 걸기
    [key:string]:string
}

const p:Props={
    name:"aas",
    a:'d',
    b:'e',
    c:'3',
    0:'d',
    1:'t'
}

let keys:keyof Props

interface User{
    name:string,
    age:number,
    hello(msg:string):void
}

let keysOfUser: keyof User
keysOfUser = "age"

let helloMethod:User["hello"]
helloMethod = function(msg:string){
    
}
반응형

'개발 > Typescript' 카테고리의 다른 글

type-alias  (0) 2021.04.16
intersection/union  (0) 2021.04.16
generic2  (0) 2021.04.16
generic  (0) 2021.04.16
enum  (0) 2021.04.16