Skip to content

Instantly share code, notes, and snippets.

View michaeljscript's full-sized avatar
💻
Coding React Apps

MichalS michaeljscript

💻
Coding React Apps
View GitHub Profile
interface Person {
name: string;
age: number;
something: string;
}
function isPerson(value: unknown): value is Person {
return typeof value === 'object' && value &&
value.hasOwnProperty('name') &&
value.hasOwnProperty('age') &&
typeof value.name === 'string' &&
typeof value.age === 'number';
}
interface Person {
name: string;
age: number;
}
declare global {
interface Object {
hasOwnProperty<K extends string>(key: K): this is Record<K, unknown>;
}
}