programing

파괴 시 문자 유형 주조

megabox 2023. 6. 18. 12:28
반응형

파괴 시 문자 유형 주조

이것을 가정해 보겠습니다.

{foo, bar} = groupBy(arg);

저는 풋타입을 주조하고 싶습니다.Foo및 유형에 대한 막대Bar어떻게 해야 하나요?

저는 Typescript의 완전한 초보자입니다. groupBy로다시 패키지에서 나온 것입니다.

Typescript가 groupBy의 결과 유형을 추론할 수 없는 경우 직접 주장할 수 있습니다.

function groupBy(o: any) {
    return o; // return any
}

let x = { a: 1, b: "1" }

// we know better than tsc and assert the type
let {a, b} = <{ a: number, b: string }>groupBy(x);

언급URL : https://stackoverflow.com/questions/40819973/typescript-type-casting-when-destructuring

반응형