INIT
This commit is contained in:
Generated
Vendored
+14
@@ -0,0 +1,14 @@
|
||||
import { DOMContext, type ReadableBoxedValues } from "svelte-toolbelt";
|
||||
import type { TextSelectionLayerImplProps } from "./types.js";
|
||||
interface TextSelectionLayerStateOpts extends ReadableBoxedValues<Required<Omit<TextSelectionLayerImplProps, "children" | "preventOverflowTextSelection" | "ref">> & {
|
||||
ref: HTMLElement | null;
|
||||
}> {
|
||||
}
|
||||
export declare class TextSelectionLayerState {
|
||||
#private;
|
||||
static create(opts: TextSelectionLayerStateOpts): TextSelectionLayerState;
|
||||
readonly opts: TextSelectionLayerStateOpts;
|
||||
readonly domContext: DOMContext;
|
||||
constructor(opts: TextSelectionLayerStateOpts);
|
||||
}
|
||||
export {};
|
||||
Reference in New Issue
Block a user