MCPcopy Create free account
hub / github.com/google/magika / Person

Interface Person

tests_data/basic/typescript/code.ts:2–5  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1// This is typescript, and not valid javascript.
2interface Person {
3 name: string;
4 age: number;
5}
6
7function greet(person: Person): string {
8 return `Hello, ${person.name}. You are ${person.age} years old.`;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…