Files
eewing ec317eb17c
CI / build (push) Has been skipped
CI / deploy (push) Successful in 1m11s
INIT
2026-02-18 15:17:47 -06:00

15 lines
628 B
TypeScript

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 {};