Answers for "typescript utility types merge interfaces"

0

typescript utility types merge interfaces

interface A {
    x: string
}

interface B extends Omit<A, 'x'> {
  x: number
}
Posted by: Guest on August-10-2020

Code answers related to "TypeScript"

Browse Popular Code Answers by Language