export function ensureArray(input: T | T[]): T[] { return Array.isArray(input) ? input : [input]; }