I am encountering a TypeScript error with the following code. In this interface, the 'items' property can be either an object or an array depending on the code and response. I am unsure how to specify the datatype of 'array/object/any', particularly for the 'items' property.
export interface Test {
items: {
test1: testing[],
test2: testing[]
}
}