mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-14 19:16:17 -06:00
6 lines
166 B
TypeScript
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;
|
|
} |