first commit
This commit is contained in:
36
public/assets/quill/modules/history.d.ts
vendored
Normal file
36
public/assets/quill/modules/history.d.ts
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
import type Delta from 'quill-delta';
|
||||
import Module from '../core/module.js';
|
||||
import Quill from '../core/quill.js';
|
||||
import type Scroll from '../blots/scroll.js';
|
||||
import type { Range } from '../core/selection.js';
|
||||
export interface HistoryOptions {
|
||||
userOnly: boolean;
|
||||
delay: number;
|
||||
maxStack: number;
|
||||
}
|
||||
export interface StackItem {
|
||||
delta: Delta;
|
||||
range: Range | null;
|
||||
}
|
||||
interface Stack {
|
||||
undo: StackItem[];
|
||||
redo: StackItem[];
|
||||
}
|
||||
declare class History extends Module<HistoryOptions> {
|
||||
static DEFAULTS: HistoryOptions;
|
||||
lastRecorded: number;
|
||||
ignoreChange: boolean;
|
||||
stack: Stack;
|
||||
currentRange: Range | null;
|
||||
constructor(quill: Quill, options: Partial<HistoryOptions>);
|
||||
change(source: 'undo' | 'redo', dest: 'redo' | 'undo'): void;
|
||||
clear(): void;
|
||||
cutoff(): void;
|
||||
record(changeDelta: Delta, oldDelta: Delta): void;
|
||||
redo(): void;
|
||||
transform(delta: Delta): void;
|
||||
undo(): void;
|
||||
protected restoreSelection(stackItem: StackItem): void;
|
||||
}
|
||||
declare function getLastChangeIndex(scroll: Scroll, delta: Delta): number;
|
||||
export { History as default, getLastChangeIndex };
|
||||
Reference in New Issue
Block a user