I am getting some typescipt error for the below code, actually for the below interface, items can be object or array based on the code and response, but I am not sure on how to add datatype of array/object/any, more specifically 'any' to the items property
export interface Test {
items: {
test1: testing[],
test2: testing[]
}
}