Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/basarat/typescript-book
/ Point
Interface
Point
code/types/interfaces.ts:2–4 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
namespace Implement {
2
interface
Point {
3
x: number; y: number;
4
}
5
6
class
MyPoint implements Point {
7
x: number; y: number;
// Same as Point
Callers
nothing calls this directly
Implementers
1
MyPoint
code/types/interfaces.ts
Calls
no outgoing calls
Tested by
no test coverage detected