Jenis utilitas TypeScript menggabungkan antarmuka

interface A {
    x: string
}

interface B extends Omit<A, 'x'> {
  x: number
}