Projektstart

This commit is contained in:
2026-01-22 15:49:12 +01:00
parent 7212eb6f7a
commit 57e5f652f8
10637 changed files with 2598792 additions and 64 deletions

18
backend/node_modules/obliterator/iterator.d.ts generated vendored Normal file
View File

@@ -0,0 +1,18 @@
import type {Sequence} from './types';
type NextFunction<V> = () => IteratorResult<V>;
export default class ObliteratorIterator<V> implements IterableIterator<V> {
// Constructor
constructor(next: NextFunction<V>);
// Well-known methods
next(): IteratorResult<V>;
[Symbol.iterator](): IterableIterator<V>;
// Static methods
static of<T>(...args: T[]): ObliteratorIterator<T>;
static empty<T>(): ObliteratorIterator<T>;
static is(value: any): boolean;
static fromSequence<T>(sequence: Sequence<T>): ObliteratorIterator<T>;
}