Files
TypeScript/src/lib/es2015.function.d.ts
T
2016-03-28 14:49:22 -07:00

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;
}