TypeScript: Jak sprawdzić, czy obiekt implementuje dany interfejs?
Opublikowano: 29.03.2025 - tagi: JavaScript TypeScript Interfejs Obiekt
Czy obiekt implementuje interfejs?
TypeScript pozwala na sprawdzenie, czy obiekt implementuje konkretny interfejs za pomocą strażnika typu (ang.: typ-safe guard). Taki strażnik musi zostać napisany przez programistę.
Przykład:
Interfejs:
interface IPerson {
name: string
age: number
weight: number
}
I funkcja, która sprawdzi, czy podana wartość implementuje interfejs:
function isPerson(person: unknown): person is IPerson {
return typeof person === 'object' && person !== null && 'name' in person && 'age' in person && 'weight' in person;
}
Przykład wywołania:
console.log('null: ', isPerson(null)) // false
console.log('undefined: ', isPerson(undefined)) // false
console.log('[]: ', isPerson([])) // false
console.log('{ name: "Kowalski" }: ', isPerson({ name: "Kowalski" })) // false
console.log('{ name: "Kowalski", age: 25, weight: 75 }: ', isPerson({ name: "Kowalski", age: 25, weight: 75 })) // true