This commit is contained in:
eewing
2026-02-17 14:10:16 -06:00
parent 2bca5834c5
commit cf73cd3b4c
11246 changed files with 1690552 additions and 0 deletions
@@ -0,0 +1,13 @@
import { DOMContext, type Box, type ReadableBoxedValues } from "svelte-toolbelt";
import type { EscapeLayerImplProps } from "./types.js";
interface EscapeLayerStateOpts extends ReadableBoxedValues<Required<Omit<EscapeLayerImplProps, "children" | "ref">>> {
ref: Box<HTMLElement | null>;
}
export declare class EscapeLayerState {
#private;
static create(opts: EscapeLayerStateOpts): EscapeLayerState;
readonly opts: EscapeLayerStateOpts;
readonly domContext: DOMContext;
constructor(opts: EscapeLayerStateOpts);
}
export {};