typescript interface with type object code example
Example 1: typescript interface function
interface IEmployee {
empCode: number;
empName: string;
getSalary: (number) => number;
getManagerName(number): string;
}
Example 2: typescript interface
interface Foo {
bar: string;
qux: number;
}
const MyFoo = <Foo> {
bar: "Hello",
qux: 7
}
const MyFoo: Foo = {
bar: "Hello",
qux: 7
}
Example 3: typescript type interface
interface Animal { type Animal = {
name: string; name: string;
} }
interface Bear extends Animal { type Bear = Animal & {
honey: boolean; honey: Boolean;
} }
const bear = getBear(); const bear = getBear();
bear.name; bear.name;
bear.honey; bear.honey;