| 1 | // This is typescript, and not valid javascript. |
| 2 | interface Person { |
| 3 | name: string; |
| 4 | age: number; |
| 5 | } |
| 6 | |
| 7 | function greet(person: Person): string { |
| 8 | return `Hello, ${person.name}. You are ${person.age} years old.`; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…