first commit
This commit is contained in:
13
public/assets/quill-delta/dist/OpIterator.d.ts
vendored
Normal file
13
public/assets/quill-delta/dist/OpIterator.d.ts
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
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[];
|
||||
}
|
||||
Reference in New Issue
Block a user