Interface
Interface is similar to TypeScript's interface. Internally it's a Dictionary
schema type with each field being typed. Interface supports type generics and
it's useful for custom handlers
CONCEPT, generated model entities and
generated query clients.
The interface declaration feels like TypeScript, too:
Multiple inheritance
Interface can be extended.
In the code snippet above, the TripleInt
interface contains 4 fields while 3
of them are inherited.