TYML supports array types.
/// An array of strings settings: [string]
Arrays of union types are also allowed.
settings: [string | int]
# !tyml example.tyml settings = ["string1", "string2", 100]