export interface ConvertableToArray<T = string> {
    toArray(): T[];
}
