MCPcopy Create free account
hub / github.com/SincereCSL/Playgrounds / Square

Interface Square

TypeScript/StudyTypeScript/src/advanced_01.ts:42–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40// 可区分的联合类型 (结合了联合类型和字面量类型保护方法)
41
42interface Square {
43 kind: "square",
44 size: number
45}
46interface Rectangle {
47 kind: "rectangle";
48 width: number;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected