import type { Operator } from './index.ts'; /** * Similar to `Array.flat`, flatten array inputs into a single sequence of values. * @param depth */ export default function (depth?: number): Operator;