MCPcopy Create free account
hub / github.com/dipscope/TypeManager.TS / User

Class User

spec/type-manager.spec.ts:16–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14}
15
16@Type()
17class User
18{
19 @Property(() => String, { alias: 'username' }) public name?: string;
20 @Property(() => String) public email?: string;
21 @Property(() => String, { deserializedDefaultValue: 'd', useDefaultValue: true }) public status?: string;
22 @Property(() => String, { defaultValue: () => 'e', useDefaultValue: true }) public login?: string;
23 @Property(() => String, { useImplicitConversion: true }) public description?: string;
24 @Property(() => String, { serializable: true }) public about?: string;
25 @Property(() => String, { deserializable: true }) public device?: string;
26}
27
28@Type()
29class Message

Callers

nothing calls this directly

Calls 2

TypeFunction · 0.90
PropertyFunction · 0.90

Tested by

no test coverage detected