TypeScript/src/lib/es2015.function.d.ts

6 lines
166 B
TypeScript

interface Function {
/**
* Returns the name of the function. Function names are read-only and can not be changed.
*/
readonly name: string;
}