Files
chuanggao-website/client/node_modules/quill-delta/dist/Iterator.d.ts
2026-05-12 16:53:18 +08:00

14 lines
278 B
TypeScript

import Op from './Op';
export default class Iterator {
ops: Op[];
index: number;
offset: number;
constructor(ops: Op[]);
hasNext(): boolean;
next(length?: number): Op;
peek(): Op;
peekLength(): number;
peekType(): string;
rest(): Op[];
}