Typing
Primitive types
Forest Admin Type
Language Type
Composite types
// Object containing 2 strings
const typeOfObjectWithTwoStrings = { firstName: 'String', lastName: 'String' };
// Array of strings
const typeOfArrayOfStrings = ['String'];
// Array of objects
const typeOfArrayOfObjects = [{ content: 'String' }];
// Object containing a 2d-grid of numbers
const typeOfObjectContainingAGridOfNumbers = { content: [['Number']] };Composite Type
Example
How it gets displayed
Last updated