MCPcopy
hub / github.com/LeCoupa/awesome-cheatsheets / Timestamped

Interface Timestamped

frontend/typescript.ts:123–125  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

121
122// Multiple Inheritance
123interface Timestamped {
124 createdAt: Date;
125}
126interface AdminUser extends User, Timestamped {
127 role: "admin";
128}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected