object type typescript code example
Example 1: typescript type object
type Dictionary = {
[key: string]: any
}
Example 2: typescript object type
let endedCoord: {x: number, y: number} = {
x: -1,
y: -1,
}
Example 3: angular type of string
if(typeof myVariable === 'string'){
}
Example 4: typescript type of object values
const data = {
value: 123,
text: 'text'
};
type Data = typeof data;
Example 5: object type in typescript
declare function create(o: object | null): void;
create(42);Argument of type '42' is not assignable to parameter of type 'object | null'.2345Argument of type '42' is not assignable to parameter of type 'object | null'.create("string");Argument of type '"string"' is not assignable to parameter of type 'object | null'.2345Argument of type '"string"' is not assignable to parameter of type 'object | null'.create(false);Argument of type 'false' is not assignable to parameter of type 'object | null'.2345Argument of type 'false' is not assignable to parameter of type 'object | null'.Try