fill.d.ts 117 B

12345678
  1. declare function fill(
  2. list: any[],
  3. val: any,
  4. start?: number,
  5. end?: number
  6. ): any[];
  7. export = fill;