All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
30 lines
1.4 KiB
TypeScript
30 lines
1.4 KiB
TypeScript
/// <reference types="react" />
|
|
import { DebouncedFunc } from 'lodash';
|
|
import { Point, Range } from 'slate';
|
|
import { ReactEditor } from '../../plugin/react-editor';
|
|
export declare type Action = {
|
|
at?: Point | Range;
|
|
run: () => void;
|
|
};
|
|
export declare type CreateAndroidInputManagerOptions = {
|
|
editor: ReactEditor;
|
|
scheduleOnDOMSelectionChange: DebouncedFunc<() => void>;
|
|
onDOMSelectionChange: DebouncedFunc<() => void>;
|
|
};
|
|
export declare type AndroidInputManager = {
|
|
flush: () => void;
|
|
scheduleFlush: () => void;
|
|
hasPendingDiffs: () => boolean;
|
|
hasPendingAction: () => boolean;
|
|
hasPendingChanges: () => boolean;
|
|
isFlushing: () => boolean | 'action';
|
|
handleUserSelect: (range: Range | null) => void;
|
|
handleCompositionEnd: (event: React.CompositionEvent<HTMLDivElement>) => void;
|
|
handleCompositionStart: (event: React.CompositionEvent<HTMLDivElement>) => void;
|
|
handleDOMBeforeInput: (event: InputEvent) => void;
|
|
handleKeyDown: (event: React.KeyboardEvent<HTMLDivElement>) => void;
|
|
handleDomMutations: (mutations: MutationRecord[]) => void;
|
|
handleInput: () => void;
|
|
};
|
|
export declare function createAndroidInputManager({ editor, scheduleOnDOMSelectionChange, onDOMSelectionChange, }: CreateAndroidInputManagerOptions): AndroidInputManager;
|
|
//# sourceMappingURL=android-input-manager.d.ts.map
|