创高项目初始化
This commit is contained in:
58
client/node_modules/quill/modules/keyboard.d.ts
generated
vendored
Normal file
58
client/node_modules/quill/modules/keyboard.d.ts
generated
vendored
Normal file
@@ -0,0 +1,58 @@
|
||||
import type { BlockBlot } from 'parchment';
|
||||
import Quill from '../core/quill.js';
|
||||
import Module from '../core/module.js';
|
||||
import type { BlockEmbed } from '../blots/block.js';
|
||||
import type { Range } from '../core/selection.js';
|
||||
declare const SHORTKEY: string;
|
||||
export interface Context {
|
||||
collapsed: boolean;
|
||||
empty: boolean;
|
||||
offset: number;
|
||||
prefix: string;
|
||||
suffix: string;
|
||||
format: Record<string, unknown>;
|
||||
event: KeyboardEvent;
|
||||
line: BlockEmbed | BlockBlot;
|
||||
}
|
||||
interface BindingObject extends Partial<Omit<Context, 'prefix' | 'suffix' | 'format'>> {
|
||||
key: number | string | string[];
|
||||
shortKey?: boolean | null;
|
||||
shiftKey?: boolean | null;
|
||||
altKey?: boolean | null;
|
||||
metaKey?: boolean | null;
|
||||
ctrlKey?: boolean | null;
|
||||
prefix?: RegExp;
|
||||
suffix?: RegExp;
|
||||
format?: Record<string, unknown> | string[];
|
||||
handler?: (this: {
|
||||
quill: Quill;
|
||||
}, range: Range, curContext: Context, binding: NormalizedBinding) => boolean | void;
|
||||
}
|
||||
type Binding = BindingObject | string | number;
|
||||
interface NormalizedBinding extends Omit<BindingObject, 'key' | 'shortKey'> {
|
||||
key: string | number;
|
||||
}
|
||||
interface KeyboardOptions {
|
||||
bindings: Record<string, Binding>;
|
||||
}
|
||||
interface KeyboardOptions {
|
||||
bindings: Record<string, Binding>;
|
||||
}
|
||||
declare class Keyboard extends Module<KeyboardOptions> {
|
||||
static DEFAULTS: KeyboardOptions;
|
||||
static match(evt: KeyboardEvent, binding: BindingObject): boolean;
|
||||
bindings: Record<string, NormalizedBinding[]>;
|
||||
constructor(quill: Quill, options: Partial<KeyboardOptions>);
|
||||
addBinding(keyBinding: Binding, context?: Required<BindingObject['handler']> | Partial<Omit<BindingObject, 'key' | 'handler'>>, handler?: Required<BindingObject['handler']> | Partial<Omit<BindingObject, 'key' | 'handler'>>): void;
|
||||
listen(): void;
|
||||
handleBackspace(range: Range, context: Context): void;
|
||||
handleDelete(range: Range, context: Context): void;
|
||||
handleDeleteRange(range: Range): void;
|
||||
handleEnter(range: Range, context: Context): void;
|
||||
}
|
||||
declare function normalize(binding: Binding): BindingObject | null;
|
||||
declare function deleteRange({ quill, range }: {
|
||||
quill: Quill;
|
||||
range: Range;
|
||||
}): void;
|
||||
export { Keyboard as default, SHORTKEY, normalize, deleteRange };
|
||||
Reference in New Issue
Block a user