return value typescript code example
Example 1: typescript function as parameter
function createPerson(name: string, doAction: () => void): void {
console.log(`Hi, my name is ${name}.`);
doAction();
}
createPerson('Bob', waveHands());
Example 2: use type as value typescript
Typescript interfaces aren''t being compiled into the js output, and you can not use them at runtime
Example 3: get function return type typescript
type return_type = ReturnType<() => string>;
function hello_world(): string {
return "hello world";
}
type return_type = ReturnType<typeof hello_world>;