function type expression

//                  โ•ญ โญ๏ธ func type expr โ•ฎ
type GreetFunction = (a: string) => void ;

function greeter(fn: GreetFunction) {
  // ...
}

Last updated