export function isArray(value: any): value is T[] { return Array.isArray(value) }