e
Size: a a a
e
S
G
G
G
e
G
type ObjectID = string & { __type: 'Id'}
function ID(n: string): ObjectID{
return n as any;
}
e
G
G
e
G
G
G
G
AZ
type ObjectID = string & { __type: 'Id'}
function ID(n: string): ObjectID{
return n as any;
}
AZ
type UserCommonFields =
{ Name: String, Age: u8 }
type NewUser =
{ Password: String, CreatedOn: Option<DateTime> } & UserCommonFields;
type CreatedUser =
{ CreatedOn: DateTime } & UserCommonFIelds;
G
type UserCommonFields =
{ Name: String, Age: u8 }
type NewUser =
{ Password: String, CreatedOn: Option<DateTime> } & UserCommonFields;
type CreatedUser =
{ CreatedOn: DateTime } & UserCommonFIelds;
AZ
AZ