typesArrayableOn this pageArrayable A type that allows both the given type and an array of that type. Interface typescripttype Arrayable<T> = T | T[]; Usage typescriptimport { Arrayable } from '@modern-kit/types';type Result = Arrayable<string>; // string | string[]