Errors
01
Wrong
new ArrayMeta([] as any);
new MapMeta([] as any);Right
new ArrayMeta([new NumberField()]);
new MapMeta([new NumberField()]);02
Wrong
new ObjectMeta({ builder: Number, fields: {} });Right
class User {
public id: string;
}
const USER_META = new ObjectMeta({
builder: User,
fields: {
id: new StringField()
}
});03
Wrong
Right
04
05
06
Wrong
Right
Last updated