Table of Contents

Typescript - Type

About

Type definition in Typescript

Annotation

type annotation

Example:

function greeter(person: string) {
    return "Hello, " + person;
}

More … Basic Type