Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
42
interface
Square {
43
kind:
"square"
,
44
size: number
45
}
46
interface
Rectangle {
47
kind:
"rectangle"
;
48
width: number;
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected