2026-07-08 20:37:59 +02:00
|
|
|
// Public entrypoint for `evidence-anchor`.
|
|
|
|
|
//
|
2026-07-08 20:41:54 +02:00
|
|
|
// The stable surface consumers depend on:
|
|
|
|
|
// - adapter-side types + the viewer contract (./types)
|
|
|
|
|
// - selector creation / resolution (./selectors)
|
2026-07-08 20:37:59 +02:00
|
|
|
//
|
2026-07-08 20:41:54 +02:00
|
|
|
// The concrete PDF adapter lives behind the `evidence-anchor/pdf` subpath
|
|
|
|
|
// (./pdf) so pure consumers do not pull PDF.js or React into their bundle.
|
|
|
|
|
|
|
|
|
|
export * from "./types";
|
|
|
|
|
export {
|
|
|
|
|
createSelectors,
|
|
|
|
|
resolveSelectors,
|
|
|
|
|
DEFAULT_CONTEXT_CHARS,
|
|
|
|
|
type CreateSelectorsOptions,
|
|
|
|
|
} from "./selectors";
|