diff --git a/.github/workflows/api-docs.yml b/.github/workflows/api-docs.yml
new file mode 100644
index 0000000..2d00470
--- /dev/null
+++ b/.github/workflows/api-docs.yml
@@ -0,0 +1,58 @@
+name: Regenerate API docs
+
+on:
+ push:
+ branches: [main]
+ paths:
+ - 'packages/connect-core/src/**'
+ - 'packages/connect-react/src/**'
+ - 'packages/connect-elements/src/**'
+ pull_request:
+ paths:
+ - 'packages/connect-core/src/**'
+ - 'packages/connect-react/src/**'
+ - 'packages/connect-elements/src/**'
+
+jobs:
+ generate:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+
+ - uses: actions/setup-node@v4
+ with:
+ node-version: 20
+ cache: npm
+
+ - name: Install dependencies
+ run: npm ci
+
+ - name: Build SDK packages
+ # generate:api-docs needs the compiled .d.ts files for tsconfig resolution
+ run: npx turbo run build --filter='@pacto-connect/core' --filter='@pacto-connect/react' --filter='@pacto-connect/elements'
+
+ - name: Regenerate API docs
+ run: npm run generate:api-docs
+ working-directory: apps/docs
+
+ - name: Check for uncommitted changes
+ id: diff
+ run: |
+ git diff --exit-code apps/docs/pages/api-reference/ || echo "changed=true" >> "$GITHUB_OUTPUT"
+
+ - name: Fail if API docs are out of date
+ if: steps.diff.outputs.changed == 'true'
+ run: |
+ echo "::error::API reference docs are out of date. Run 'npm run generate:api-docs' in apps/docs and commit the result."
+ git diff --stat apps/docs/pages/api-reference/
+ exit 1
+
+ # On pushes to main, auto-commit the refreshed docs if they changed
+ - name: Commit updated API docs
+ if: github.event_name == 'push' && steps.diff.outputs.changed == 'true'
+ run: |
+ git config user.name "github-actions[bot]"
+ git config user.email "github-actions[bot]@users.noreply.github.com"
+ git add apps/docs/pages/api-reference/
+ git commit -m "chore(docs): regenerate API reference [skip ci]"
+ git push
diff --git a/apps/docs/components/Playground.module.css b/apps/docs/components/Playground.module.css
new file mode 100644
index 0000000..e9b25cc
--- /dev/null
+++ b/apps/docs/components/Playground.module.css
@@ -0,0 +1,342 @@
+.root {
+ display: grid;
+ grid-template-columns: 300px 1fr;
+ gap: 1.5rem;
+ min-height: calc(100vh - 4rem);
+ padding: 1.5rem;
+ box-sizing: border-box;
+ align-items: start;
+}
+
+@media (max-width: 768px) {
+ .root {
+ grid-template-columns: 1fr;
+ }
+}
+
+/* ── Config panel ───────────────────────────────────────────────── */
+
+.panel {
+ background: var(--nextra-bg, #fff);
+ border: 1px solid var(--nextra-border, #e5e7eb);
+ border-radius: 8px;
+ padding: 1.25rem;
+ position: sticky;
+ top: 1.5rem;
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+}
+
+:global(.dark) .panel {
+ background: #111;
+ border-color: #333;
+}
+
+.panelTitle {
+ font-size: 0.875rem;
+ font-weight: 600;
+ letter-spacing: 0.05em;
+ text-transform: uppercase;
+ color: var(--nextra-gray, #6b7280);
+ margin: 0 0 0.25rem;
+}
+
+.field {
+ display: flex;
+ flex-direction: column;
+ gap: 0.375rem;
+ cursor: text;
+}
+
+.label {
+ font-size: 0.8125rem;
+ font-weight: 500;
+ color: inherit;
+}
+
+.optional {
+ font-weight: 400;
+ color: var(--nextra-gray, #6b7280);
+}
+
+.input,
+.select {
+ font-family: "Fira Mono", "Cascadia Code", ui-monospace, monospace;
+ font-size: 0.8125rem;
+ padding: 0.375rem 0.5rem;
+ border: 1px solid var(--nextra-border, #e5e7eb);
+ border-radius: 6px;
+ background: var(--nextra-bg, #fff);
+ color: inherit;
+ width: 100%;
+ box-sizing: border-box;
+ transition: border-color 0.15s;
+}
+
+:global(.dark) .input,
+:global(.dark) .select {
+ background: #1a1a1a;
+ border-color: #444;
+}
+
+.input:focus,
+.select:focus {
+ outline: none;
+ border-color: #6366f1;
+ box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
+}
+
+.hint {
+ font-size: 0.75rem;
+ color: var(--nextra-gray, #6b7280);
+ margin: 0;
+}
+
+.warn {
+ color: #d97706;
+}
+
+.error {
+ font-size: 0.75rem;
+ color: #ef4444;
+ margin: 0;
+ padding: 0.375rem 0.5rem;
+ background: rgba(239, 68, 68, 0.08);
+ border-radius: 4px;
+}
+
+/* ── Toggle ─────────────────────────────────────────────────────── */
+
+.toggleRow {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+}
+
+.toggle {
+ position: relative;
+ width: 36px;
+ height: 20px;
+ border-radius: 999px;
+ background: #d1d5db;
+ border: none;
+ cursor: pointer;
+ padding: 0;
+ transition: background 0.15s;
+ flex-shrink: 0;
+}
+
+.toggleOn {
+ background: #6366f1;
+}
+
+.toggleThumb {
+ position: absolute;
+ top: 2px;
+ left: 2px;
+ width: 16px;
+ height: 16px;
+ border-radius: 50%;
+ background: #fff;
+ transition: transform 0.15s;
+ pointer-events: none;
+}
+
+.toggleOn .toggleThumb {
+ transform: translateX(16px);
+}
+
+/* ── Buttons ────────────────────────────────────────────────────── */
+
+.previewActions {
+ display: flex;
+ flex-direction: column;
+ gap: 0.5rem;
+ margin-top: 0.25rem;
+}
+
+.btnPrimary {
+ padding: 0.5rem 1rem;
+ background: #6366f1;
+ color: #fff;
+ border: none;
+ border-radius: 6px;
+ font-size: 0.875rem;
+ font-weight: 500;
+ cursor: pointer;
+ transition:
+ background 0.15s,
+ opacity 0.15s;
+ width: 100%;
+}
+
+.btnPrimary:hover:not(:disabled) {
+ background: #4f46e5;
+}
+
+.btnPrimary:disabled {
+ opacity: 0.5;
+ cursor: not-allowed;
+}
+
+.btnSecondary {
+ padding: 0.5rem 1rem;
+ background: transparent;
+ color: inherit;
+ border: 1px solid var(--nextra-border, #e5e7eb);
+ border-radius: 6px;
+ font-size: 0.875rem;
+ font-weight: 500;
+ cursor: pointer;
+ transition: background 0.15s;
+ width: 100%;
+}
+
+.btnSecondary:hover {
+ background: rgba(99, 102, 241, 0.08);
+}
+
+/* ── Right column ───────────────────────────────────────────────── */
+
+.right {
+ display: flex;
+ flex-direction: column;
+ gap: 1.5rem;
+ min-width: 0;
+}
+
+/* ── Preview area ───────────────────────────────────────────────── */
+
+.previewArea {
+ position: relative;
+ border: 1px solid var(--nextra-border, #e5e7eb);
+ border-radius: 8px;
+ min-height: 280px;
+ overflow: hidden;
+ background: repeating-linear-gradient(
+ 45deg,
+ transparent,
+ transparent 12px,
+ rgba(99, 102, 241, 0.03) 12px,
+ rgba(99, 102, 241, 0.03) 24px
+ );
+}
+
+:global(.dark) .previewArea {
+ border-color: #333;
+}
+
+.previewMount {
+ position: absolute;
+ inset: 0;
+ z-index: 10;
+}
+
+.previewPlaceholder {
+ position: absolute;
+ inset: 0;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ gap: 0.5rem;
+ color: var(--nextra-gray, #6b7280);
+ text-align: center;
+ padding: 2rem;
+}
+
+.previewIcon {
+ font-size: 2.5rem;
+ opacity: 0.4;
+ margin-bottom: 0.25rem;
+}
+
+.previewPlaceholder p {
+ margin: 0;
+ font-size: 0.875rem;
+}
+
+/* ── Snippet panel ──────────────────────────────────────────────── */
+
+.snippet {
+ border: 1px solid var(--nextra-border, #e5e7eb);
+ border-radius: 8px;
+ overflow: hidden;
+}
+
+:global(.dark) .snippet {
+ border-color: #333;
+}
+
+.snippetTabs {
+ display: flex;
+ align-items: center;
+ gap: 0;
+ background: var(--nextra-bg, #f9fafb);
+ border-bottom: 1px solid var(--nextra-border, #e5e7eb);
+ padding: 0 0.75rem;
+}
+
+:global(.dark) .snippetTabs {
+ background: #1a1a1a;
+ border-color: #333;
+}
+
+.snippetTab {
+ padding: 0.625rem 0.875rem;
+ font-size: 0.8125rem;
+ font-weight: 500;
+ background: none;
+ border: none;
+ border-bottom: 2px solid transparent;
+ cursor: pointer;
+ color: var(--nextra-gray, #6b7280);
+ transition:
+ color 0.15s,
+ border-color 0.15s;
+ white-space: nowrap;
+}
+
+.snippetTab:hover {
+ color: inherit;
+}
+
+.snippetTabActive {
+ color: #6366f1;
+ border-bottom-color: #6366f1;
+}
+
+.copyBtn {
+ margin-left: auto;
+ padding: 0.375rem 0.75rem;
+ font-size: 0.75rem;
+ font-weight: 500;
+ background: none;
+ border: 1px solid var(--nextra-border, #e5e7eb);
+ border-radius: 4px;
+ cursor: pointer;
+ color: inherit;
+ transition: background 0.15s;
+ white-space: nowrap;
+}
+
+.copyBtn:hover {
+ background: rgba(99, 102, 241, 0.08);
+}
+
+.code {
+ margin: 0;
+ padding: 1.25rem;
+ font-family: "Fira Mono", "Cascadia Code", ui-monospace, monospace;
+ font-size: 0.8125rem;
+ line-height: 1.6;
+ overflow-x: auto;
+ background: var(--nextra-bg, #fff);
+ color: inherit;
+ white-space: pre;
+}
+
+:global(.dark) .code {
+ background: #111;
+}
diff --git a/apps/docs/components/Playground.tsx b/apps/docs/components/Playground.tsx
new file mode 100644
index 0000000..120a69f
--- /dev/null
+++ b/apps/docs/components/Playground.tsx
@@ -0,0 +1,325 @@
+import type { ReactElement } from 'react';
+import { useCallback, useEffect, useRef, useState } from 'react';
+import styles from './Playground.module.css';
+
+interface PlaygroundConfig {
+ publishableKey: string;
+ mode: 'buy' | 'sell';
+ listingId: string;
+ gatewayUrl: string;
+ testMode: boolean;
+ injectStyles: boolean;
+}
+
+const DEFAULT_CONFIG: PlaygroundConfig = {
+ publishableKey: 'pk_test_demo',
+ mode: 'buy',
+ listingId: '',
+ gatewayUrl: '',
+ testMode: true,
+ injectStyles: true,
+};
+
+type SnippetLang = 'react' | 'vanilla' | 'cdn';
+
+function generateReactSnippet(cfg: PlaygroundConfig): string {
+ const lines: string[] = [
+ `import { PactoCheckout } from '@pacto-connect/react'`,
+ ``,
+ `export default function App() {`,
+ ` return (`,
+ ];
+ const props: string[] = [` publishableKey="${cfg.publishableKey}"`, ` mode="${cfg.mode}"`];
+ if (cfg.listingId) props.push(` listingId="${cfg.listingId}"`);
+ if (cfg.gatewayUrl) props.push(` gatewayUrl="${cfg.gatewayUrl}"`);
+ if (cfg.testMode) props.push(` testMode`);
+ props.push(` onComplete={(escrow) => console.log('Checkout complete', escrow.id)}`);
+ props.push(` onClose={() => { /* hide the widget */ }}`);
+ lines.push(` `, ` )`, `}`);
+ return lines.join('\n');
+}
+
+function generateVanillaSnippet(cfg: PlaygroundConfig): string {
+ const opts: string[] = [` publishableKey: '${cfg.publishableKey}'`, ` mode: '${cfg.mode}'`];
+ if (cfg.listingId) opts.push(` listingId: '${cfg.listingId}'`);
+ if (cfg.gatewayUrl) opts.push(` gatewayUrl: '${cfg.gatewayUrl}'`);
+ if (cfg.testMode) opts.push(` testMode: true`);
+ opts.push(` onComplete: (escrow) => {`);
+ opts.push(` console.log('Checkout complete', escrow.id)`);
+ opts.push(` handle.destroy()`);
+ opts.push(` },`);
+ opts.push(` onClose: () => handle.destroy(),`);
+
+ return [
+ `import { pacto } from '@pacto-connect/elements'`,
+ ``,
+ `// call when user clicks your "Buy" button`,
+ `const handle = pacto.mount('#checkout-root', {`,
+ ...opts,
+ `})`,
+ ].join('\n');
+}
+
+function generateCdnSnippet(cfg: PlaygroundConfig): string {
+ const attrs: string[] = [` publishable-key="${cfg.publishableKey}"`, ` mode="${cfg.mode}"`];
+ if (cfg.listingId) attrs.push(` listing-id="${cfg.listingId}"`);
+ if (cfg.testMode) attrs.push(` test-mode`);
+
+ return [
+ ``,
+ ``,
+ ``,
+ ``,
+ ``,
+ ``,
+ ``,
+ `
`,
+ ``,
+ ]
+ .filter((l) => l !== null)
+ .join('\n');
+}
+
+type MountHandle = {
+ open(): void;
+ close(): void;
+ destroy(): void;
+};
+
+export function Playground(): ReactElement {
+ const [cfg, setCfg] = useState(DEFAULT_CONFIG);
+ const [lang, setLang] = useState('react');
+ const [copied, setCopied] = useState(false);
+ const [widgetOpen, setWidgetOpen] = useState(false);
+ const [mountError, setMountError] = useState(null);
+ const previewRef = useRef(null);
+ const handleRef = useRef(null);
+
+ const snippet =
+ lang === 'react'
+ ? generateReactSnippet(cfg)
+ : lang === 'vanilla'
+ ? generateVanillaSnippet(cfg)
+ : generateCdnSnippet(cfg);
+
+ const copy = useCallback(() => {
+ void navigator.clipboard.writeText(snippet).then(() => {
+ setCopied(true);
+ setTimeout(() => setCopied(false), 2000);
+ });
+ }, [snippet]);
+
+ const openWidget = useCallback(async () => {
+ if (!previewRef.current) return;
+ setMountError(null);
+ try {
+ // Dynamic import keeps elements out of the SSR bundle
+ const { pacto } = await import('@pacto-connect/elements');
+ handleRef.current?.destroy();
+ handleRef.current = pacto.mount(previewRef.current, {
+ publishableKey: cfg.publishableKey,
+ mode: cfg.mode,
+ listingId: cfg.listingId || undefined,
+ gatewayUrl: cfg.gatewayUrl || undefined,
+ testMode: cfg.testMode,
+ injectStyles: cfg.injectStyles,
+ onComplete: () => {
+ setWidgetOpen(false);
+ handleRef.current = null;
+ },
+ onClose: () => {
+ setWidgetOpen(false);
+ handleRef.current = null;
+ },
+ onError: (err: Error) => {
+ setMountError(err.message);
+ setWidgetOpen(false);
+ },
+ });
+ setWidgetOpen(true);
+ } catch (err) {
+ setMountError(err instanceof Error ? err.message : 'Failed to load widget');
+ }
+ }, [cfg]);
+
+ const closeWidget = useCallback(() => {
+ handleRef.current?.close();
+ setWidgetOpen(false);
+ }, []);
+
+ // Destroy on unmount
+ useEffect(() => {
+ return () => {
+ handleRef.current?.destroy();
+ };
+ }, []);
+
+ const update = (key: K, value: PlaygroundConfig[K]) => {
+ setCfg((prev) => ({ ...prev, [key]: value }));
+ };
+
+ const isPkTest = cfg.publishableKey.startsWith('pk_test_');
+
+ return (
+
+ {/* ── Config panel ─────────────────────────────────────────── */}
+
+
+ {/* ── Right column ─────────────────────────────────────────── */}
+
+ {/* Live preview mount point */}
+
+
+ {!widgetOpen && (
+
+
⬡
+
+ Click Open widget to launch a live preview
+
+
+ The widget mounts directly into this frame using pacto.mount().
+
+
+ )}
+
+
+ {/* Snippet panel */}
+
+
+ {(['react', 'vanilla', 'cdn'] as SnippetLang[]).map((l) => (
+
+ ))}
+
+
+
+ {snippet}
+
+
+
+
+ );
+}
diff --git a/apps/docs/next-env.d.ts b/apps/docs/next-env.d.ts
new file mode 100644
index 0000000..a4a7b3f
--- /dev/null
+++ b/apps/docs/next-env.d.ts
@@ -0,0 +1,5 @@
+///
+///
+
+// NOTE: This file should not be edited
+// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
diff --git a/apps/docs/next.config.mjs b/apps/docs/next.config.mjs
new file mode 100644
index 0000000..da79f8f
--- /dev/null
+++ b/apps/docs/next.config.mjs
@@ -0,0 +1,13 @@
+import nextra from 'nextra';
+
+const withNextra = nextra({
+ theme: 'nextra-theme-docs',
+ themeConfig: './theme.config.tsx',
+ defaultShowCopyCode: true,
+ staticImage: true,
+});
+
+export default withNextra({
+ reactStrictMode: true,
+ transpilePackages: ['@pacto-connect/core', '@pacto-connect/react', '@pacto-connect/elements'],
+});
diff --git a/apps/docs/package.json b/apps/docs/package.json
index d02f840..b172a0f 100644
--- a/apps/docs/package.json
+++ b/apps/docs/package.json
@@ -2,12 +2,34 @@
"name": "@pacto-connect/docs",
"version": "0.0.0",
"private": true,
- "description": "Docs site + interactive playground (implemented in issue #10).",
+ "description": "Developer docs, quickstart, API reference, and interactive playground for Pacto Connect.",
"scripts": {
- "build": "echo 'docs site is implemented in issue #10' && exit 0",
- "dev": "echo 'docs site is implemented in issue #10' && exit 0",
- "lint": "echo 'noop'",
- "type-check": "echo 'noop'",
- "clean": "echo 'noop'"
+ "dev": "next dev --port 3100",
+ "build": "npm run generate:api-docs && next build",
+ "start": "next start --port 3100",
+ "lint": "next lint",
+ "type-check": "tsc --noEmit",
+ "clean": "rm -rf .next out",
+ "generate:api-docs": "node --import tsx/esm scripts/generate-api-docs.mts"
+ },
+ "dependencies": {
+ "@pacto-connect/core": "*",
+ "@pacto-connect/elements": "*",
+ "@pacto-connect/react": "*",
+ "next": "^14.2.18",
+ "next-seo": "^6.6.0",
+ "nextra": "^2.13.4",
+ "nextra-theme-docs": "^2.13.4",
+ "react": "^18.3.1",
+ "react-dom": "^18.3.1"
+ },
+ "devDependencies": {
+ "@types/node": "^20.0.0",
+ "@types/react": "^18.3.0",
+ "@types/react-dom": "^18.3.0",
+ "tsx": "^4.19.2",
+ "typedoc": "^0.28.0",
+ "typedoc-plugin-markdown": "^4.12.0",
+ "typescript": "^5.6.3"
}
}
diff --git a/apps/docs/pages/_app.tsx b/apps/docs/pages/_app.tsx
new file mode 100644
index 0000000..78d9e15
--- /dev/null
+++ b/apps/docs/pages/_app.tsx
@@ -0,0 +1,6 @@
+import type { AppProps } from 'next/app';
+import type { ReactElement } from 'react';
+
+export default function App({ Component, pageProps }: AppProps): ReactElement {
+ return ;
+}
diff --git a/apps/docs/pages/_meta.json b/apps/docs/pages/_meta.json
new file mode 100644
index 0000000..706d18a
--- /dev/null
+++ b/apps/docs/pages/_meta.json
@@ -0,0 +1,11 @@
+{
+ "index": "Introduction",
+ "quickstart": "Quickstart",
+ "api-reference": "API Reference",
+ "playground": {
+ "title": "Playground",
+ "theme": {
+ "layout": "full"
+ }
+ }
+}
diff --git a/apps/docs/pages/api-reference/_meta.json b/apps/docs/pages/api-reference/_meta.json
new file mode 100644
index 0000000..fa165a3
--- /dev/null
+++ b/apps/docs/pages/api-reference/_meta.json
@@ -0,0 +1,6 @@
+{
+ "index": "Overview",
+ "core": "@pacto-connect/core",
+ "react": "@pacto-connect/react",
+ "elements": "@pacto-connect/elements"
+}
diff --git a/apps/docs/pages/api-reference/core.mdx b/apps/docs/pages/api-reference/core.mdx
new file mode 100644
index 0000000..77f8217
--- /dev/null
+++ b/apps/docs/pages/api-reference/core.mdx
@@ -0,0 +1,2045 @@
+{/* This file is auto-generated by scripts/generate-api-docs.mts — do not edit by hand. */}
+{/* Regenerate: npm run generate:api-docs (from apps/docs) */}
+
+---
+title: '@pacto-connect/core'
+---
+
+import { Callout } from 'nextra/components'
+
+
+ This file is auto-generated by `scripts/generate-api-docs.mts`. Do not edit by hand.
+ Run `npm run generate:api-docs` in `apps/docs` to refresh it.
+
+
+# @pacto-connect/core
+
+```bash
+npm install @pacto-connect/core
+```
+
+# Class: CheckoutFlowController
+
+Defined in: [packages/connect-core/src/checkout-flow.ts:57](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L57)
+
+## Constructors
+
+### Constructor
+
+```ts
+new CheckoutFlowController(options): CheckoutFlowController;
+```
+
+Defined in: [packages/connect-core/src/checkout-flow.ts:66](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L66)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `options` | [`CheckoutFlowOptions`](#interface.checkoutflowoptions) |
+
+#### Returns
+
+`CheckoutFlowController`
+
+## Methods
+
+### confirmDeposit()
+
+```ts
+confirmDeposit(): Promise;
+```
+
+Defined in: [packages/connect-core/src/checkout-flow.ts:95](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L95)
+
+#### Returns
+
+`Promise`\<`void`\>
+
+***
+
+### destroy()
+
+```ts
+destroy(): void;
+```
+
+Defined in: [packages/connect-core/src/checkout-flow.ts:76](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L76)
+
+#### Returns
+
+`void`
+
+***
+
+### getState()
+
+```ts
+getState(): CheckoutFlowState;
+```
+
+Defined in: [packages/connect-core/src/checkout-flow.ts:68](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L68)
+
+#### Returns
+
+[`CheckoutFlowState`](#interface.checkoutflowstate)
+
+***
+
+### retry()
+
+```ts
+retry(): void;
+```
+
+Defined in: [packages/connect-core/src/checkout-flow.ts:140](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L140)
+
+#### Returns
+
+`void`
+
+***
+
+### selectListing()
+
+```ts
+selectListing(listing): Promise;
+```
+
+Defined in: [packages/connect-core/src/checkout-flow.ts:86](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L86)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `listing` | [`Listing`](#interface.listing) |
+
+#### Returns
+
+`Promise`\<`void`\>
+
+***
+
+### start()
+
+```ts
+start(): Promise;
+```
+
+Defined in: [packages/connect-core/src/checkout-flow.ts:72](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L72)
+
+#### Returns
+
+`Promise`\<`void`\>
+
+***
+
+### submitReceipt()
+
+```ts
+submitReceipt(
+ method,
+ reference,
+receipt?): Promise;
+```
+
+Defined in: [packages/connect-core/src/checkout-flow.ts:114](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L114)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `method` | `"SINPE"` \| `"SPEI"` |
+| `reference` | `string` |
+| `receipt?` | `string` |
+
+#### Returns
+
+`Promise`\<`void`\>
+
+
+---
+
+# Class: PactoApiError
+
+Defined in: [packages/connect-core/src/errors.ts:56](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/errors.ts#L56)
+
+## Extends
+
+- [`PactoError`](#class.pactoerror)
+
+## Constructors
+
+### Constructor
+
+```ts
+new PactoApiError(code, message): PactoApiError;
+```
+
+Defined in: [packages/connect-core/src/errors.ts:57](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/errors.ts#L57)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `code` | `string` |
+| `message` | `string` |
+
+#### Returns
+
+`PactoApiError`
+
+#### Overrides
+
+[`PactoError`](#class.pactoerror).[`constructor`](#constructor)
+
+## Properties
+
+| Property | Modifier | Type | Description | Inherited from | Defined in |
+| ------ | ------ | ------ | ------ | ------ | ------ |
+| `cause?` | `public` | `unknown` | - | [`PactoError`](#class.pactoerror).[`cause`](#cause) | node\_modules/typescript/lib/lib.es2022.error.d.ts:26 |
+| `code` | `readonly` | `string` | - | [`PactoError`](#class.pactoerror).[`code`](#code) | [packages/connect-core/src/errors.ts:17](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/errors.ts#L17) |
+| `message` | `public` | `string` | - | [`PactoError`](#class.pactoerror).[`message`](#message) | node\_modules/typescript/lib/lib.es5.d.ts:1077 |
+| `name` | `public` | `string` | - | [`PactoError`](#class.pactoerror).[`name`](#name) | node\_modules/typescript/lib/lib.es5.d.ts:1076 |
+| `stack?` | `public` | `string` | - | [`PactoError`](#class.pactoerror).[`stack`](#stack) | node\_modules/typescript/lib/lib.es5.d.ts:1078 |
+| `type` | `readonly` | `string` | - | [`PactoError`](#class.pactoerror).[`type`](#type) | [packages/connect-core/src/errors.ts:16](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/errors.ts#L16) |
+| `stackTraceLimit` | `static` | `number` | The `Error.stackTraceLimit` property specifies the number of stack frames collected by a stack trace (whether generated by `new Error().stack` or `Error.captureStackTrace(obj)`). The default value is `10` but may be set to any valid JavaScript number. Changes will affect any stack trace captured _after_ the value has been changed. If set to a non-number value, or set to a negative number, stack traces will not capture any frames. | [`PactoError`](#class.pactoerror).[`stackTraceLimit`](#stacktracelimit) | node\_modules/@types/node/globals.d.ts:68 |
+
+## Methods
+
+### captureStackTrace()
+
+```ts
+static captureStackTrace(targetObject, constructorOpt?): void;
+```
+
+Defined in: node\_modules/@types/node/globals.d.ts:52
+
+Creates a `.stack` property on `targetObject`, which when accessed returns
+a string representing the location in the code at which
+`Error.captureStackTrace()` was called.
+
+```js
+const myObject = {};
+Error.captureStackTrace(myObject);
+myObject.stack; // Similar to `new Error().stack`
+```
+
+The first line of the trace will be prefixed with
+`${myObject.name}: ${myObject.message}`.
+
+The optional `constructorOpt` argument accepts a function. If given, all frames
+above `constructorOpt`, including `constructorOpt`, will be omitted from the
+generated stack trace.
+
+The `constructorOpt` argument is useful for hiding implementation
+details of error generation from the user. For instance:
+
+```js
+function a() {
+ b();
+}
+
+function b() {
+ c();
+}
+
+function c() {
+ // Create an error without stack trace to avoid calculating the stack trace twice.
+ const { stackTraceLimit } = Error;
+ Error.stackTraceLimit = 0;
+ const error = new Error();
+ Error.stackTraceLimit = stackTraceLimit;
+
+ // Capture the stack trace above function b
+ Error.captureStackTrace(error, b); // Neither function c, nor b is included in the stack trace
+ throw error;
+}
+
+a();
+```
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `targetObject` | `object` |
+| `constructorOpt?` | `Function` |
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+[`PactoError`](#class.pactoerror).[`captureStackTrace`](#capturestacktrace)
+
+***
+
+### prepareStackTrace()
+
+```ts
+static prepareStackTrace(err, stackTraces): any;
+```
+
+Defined in: node\_modules/@types/node/globals.d.ts:56
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `err` | `Error` |
+| `stackTraces` | `CallSite`[] |
+
+#### Returns
+
+`any`
+
+#### See
+
+https://v8.dev/docs/stack-trace-api#customizing-stack-traces
+
+#### Inherited from
+
+[`PactoError`](#class.pactoerror).[`prepareStackTrace`](#preparestacktrace)
+
+
+---
+
+# Class: PactoAuthError
+
+Defined in: [packages/connect-core/src/errors.ts:32](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/errors.ts#L32)
+
+## Extends
+
+- [`PactoError`](#class.pactoerror)
+
+## Constructors
+
+### Constructor
+
+```ts
+new PactoAuthError(code, message): PactoAuthError;
+```
+
+Defined in: [packages/connect-core/src/errors.ts:33](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/errors.ts#L33)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `code` | `string` |
+| `message` | `string` |
+
+#### Returns
+
+`PactoAuthError`
+
+#### Overrides
+
+[`PactoError`](#class.pactoerror).[`constructor`](#constructor)
+
+## Properties
+
+| Property | Modifier | Type | Description | Inherited from | Defined in |
+| ------ | ------ | ------ | ------ | ------ | ------ |
+| `cause?` | `public` | `unknown` | - | [`PactoError`](#class.pactoerror).[`cause`](#cause) | node\_modules/typescript/lib/lib.es2022.error.d.ts:26 |
+| `code` | `readonly` | `string` | - | [`PactoError`](#class.pactoerror).[`code`](#code) | [packages/connect-core/src/errors.ts:17](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/errors.ts#L17) |
+| `message` | `public` | `string` | - | [`PactoError`](#class.pactoerror).[`message`](#message) | node\_modules/typescript/lib/lib.es5.d.ts:1077 |
+| `name` | `public` | `string` | - | [`PactoError`](#class.pactoerror).[`name`](#name) | node\_modules/typescript/lib/lib.es5.d.ts:1076 |
+| `stack?` | `public` | `string` | - | [`PactoError`](#class.pactoerror).[`stack`](#stack) | node\_modules/typescript/lib/lib.es5.d.ts:1078 |
+| `type` | `readonly` | `string` | - | [`PactoError`](#class.pactoerror).[`type`](#type) | [packages/connect-core/src/errors.ts:16](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/errors.ts#L16) |
+| `stackTraceLimit` | `static` | `number` | The `Error.stackTraceLimit` property specifies the number of stack frames collected by a stack trace (whether generated by `new Error().stack` or `Error.captureStackTrace(obj)`). The default value is `10` but may be set to any valid JavaScript number. Changes will affect any stack trace captured _after_ the value has been changed. If set to a non-number value, or set to a negative number, stack traces will not capture any frames. | [`PactoError`](#class.pactoerror).[`stackTraceLimit`](#stacktracelimit) | node\_modules/@types/node/globals.d.ts:68 |
+
+## Methods
+
+### captureStackTrace()
+
+```ts
+static captureStackTrace(targetObject, constructorOpt?): void;
+```
+
+Defined in: node\_modules/@types/node/globals.d.ts:52
+
+Creates a `.stack` property on `targetObject`, which when accessed returns
+a string representing the location in the code at which
+`Error.captureStackTrace()` was called.
+
+```js
+const myObject = {};
+Error.captureStackTrace(myObject);
+myObject.stack; // Similar to `new Error().stack`
+```
+
+The first line of the trace will be prefixed with
+`${myObject.name}: ${myObject.message}`.
+
+The optional `constructorOpt` argument accepts a function. If given, all frames
+above `constructorOpt`, including `constructorOpt`, will be omitted from the
+generated stack trace.
+
+The `constructorOpt` argument is useful for hiding implementation
+details of error generation from the user. For instance:
+
+```js
+function a() {
+ b();
+}
+
+function b() {
+ c();
+}
+
+function c() {
+ // Create an error without stack trace to avoid calculating the stack trace twice.
+ const { stackTraceLimit } = Error;
+ Error.stackTraceLimit = 0;
+ const error = new Error();
+ Error.stackTraceLimit = stackTraceLimit;
+
+ // Capture the stack trace above function b
+ Error.captureStackTrace(error, b); // Neither function c, nor b is included in the stack trace
+ throw error;
+}
+
+a();
+```
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `targetObject` | `object` |
+| `constructorOpt?` | `Function` |
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+[`PactoError`](#class.pactoerror).[`captureStackTrace`](#capturestacktrace)
+
+***
+
+### prepareStackTrace()
+
+```ts
+static prepareStackTrace(err, stackTraces): any;
+```
+
+Defined in: node\_modules/@types/node/globals.d.ts:56
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `err` | `Error` |
+| `stackTraces` | `CallSite`[] |
+
+#### Returns
+
+`any`
+
+#### See
+
+https://v8.dev/docs/stack-trace-api#customizing-stack-traces
+
+#### Inherited from
+
+[`PactoError`](#class.pactoerror).[`prepareStackTrace`](#preparestacktrace)
+
+
+---
+
+# Class: PactoError
+
+Defined in: [packages/connect-core/src/errors.ts:14](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/errors.ts#L14)
+
+## Extends
+
+- `Error`
+
+## Extended by
+
+- [`PactoApiError`](#class.pactoapierror)
+- [`PactoAuthError`](#class.pactoautherror)
+- [`PactoEscrowError`](#class.pactoescrowerror)
+- [`PactoRateLimitError`](#class.pactoratelimiterror)
+- [`PactoSessionError`](#class.pactosessionerror)
+
+## Constructors
+
+### Constructor
+
+```ts
+new PactoError(
+ type,
+ code,
+ message): PactoError;
+```
+
+Defined in: [packages/connect-core/src/errors.ts:15](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/errors.ts#L15)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `type` | `string` |
+| `code` | `string` |
+| `message` | `string` |
+
+#### Returns
+
+`PactoError`
+
+#### Overrides
+
+```ts
+Error.constructor
+```
+
+## Properties
+
+| Property | Modifier | Type | Description | Inherited from | Defined in |
+| ------ | ------ | ------ | ------ | ------ | ------ |
+| `cause?` | `public` | `unknown` | - | `Error.cause` | node\_modules/typescript/lib/lib.es2022.error.d.ts:26 |
+| `code` | `readonly` | `string` | - | - | [packages/connect-core/src/errors.ts:17](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/errors.ts#L17) |
+| `message` | `public` | `string` | - | `Error.message` | node\_modules/typescript/lib/lib.es5.d.ts:1077 |
+| `name` | `public` | `string` | - | `Error.name` | node\_modules/typescript/lib/lib.es5.d.ts:1076 |
+| `stack?` | `public` | `string` | - | `Error.stack` | node\_modules/typescript/lib/lib.es5.d.ts:1078 |
+| `type` | `readonly` | `string` | - | - | [packages/connect-core/src/errors.ts:16](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/errors.ts#L16) |
+| `stackTraceLimit` | `static` | `number` | The `Error.stackTraceLimit` property specifies the number of stack frames collected by a stack trace (whether generated by `new Error().stack` or `Error.captureStackTrace(obj)`). The default value is `10` but may be set to any valid JavaScript number. Changes will affect any stack trace captured _after_ the value has been changed. If set to a non-number value, or set to a negative number, stack traces will not capture any frames. | `Error.stackTraceLimit` | node\_modules/@types/node/globals.d.ts:68 |
+
+## Methods
+
+### captureStackTrace()
+
+```ts
+static captureStackTrace(targetObject, constructorOpt?): void;
+```
+
+Defined in: node\_modules/@types/node/globals.d.ts:52
+
+Creates a `.stack` property on `targetObject`, which when accessed returns
+a string representing the location in the code at which
+`Error.captureStackTrace()` was called.
+
+```js
+const myObject = {};
+Error.captureStackTrace(myObject);
+myObject.stack; // Similar to `new Error().stack`
+```
+
+The first line of the trace will be prefixed with
+`${myObject.name}: ${myObject.message}`.
+
+The optional `constructorOpt` argument accepts a function. If given, all frames
+above `constructorOpt`, including `constructorOpt`, will be omitted from the
+generated stack trace.
+
+The `constructorOpt` argument is useful for hiding implementation
+details of error generation from the user. For instance:
+
+```js
+function a() {
+ b();
+}
+
+function b() {
+ c();
+}
+
+function c() {
+ // Create an error without stack trace to avoid calculating the stack trace twice.
+ const { stackTraceLimit } = Error;
+ Error.stackTraceLimit = 0;
+ const error = new Error();
+ Error.stackTraceLimit = stackTraceLimit;
+
+ // Capture the stack trace above function b
+ Error.captureStackTrace(error, b); // Neither function c, nor b is included in the stack trace
+ throw error;
+}
+
+a();
+```
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `targetObject` | `object` |
+| `constructorOpt?` | `Function` |
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+```ts
+Error.captureStackTrace
+```
+
+***
+
+### prepareStackTrace()
+
+```ts
+static prepareStackTrace(err, stackTraces): any;
+```
+
+Defined in: node\_modules/@types/node/globals.d.ts:56
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `err` | `Error` |
+| `stackTraces` | `CallSite`[] |
+
+#### Returns
+
+`any`
+
+#### See
+
+https://v8.dev/docs/stack-trace-api#customizing-stack-traces
+
+#### Inherited from
+
+```ts
+Error.prepareStackTrace
+```
+
+
+---
+
+# Class: PactoEscrowError
+
+Defined in: [packages/connect-core/src/errors.ts:49](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/errors.ts#L49)
+
+## Extends
+
+- [`PactoError`](#class.pactoerror)
+
+## Constructors
+
+### Constructor
+
+```ts
+new PactoEscrowError(code, message): PactoEscrowError;
+```
+
+Defined in: [packages/connect-core/src/errors.ts:50](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/errors.ts#L50)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `code` | `string` |
+| `message` | `string` |
+
+#### Returns
+
+`PactoEscrowError`
+
+#### Overrides
+
+[`PactoError`](#class.pactoerror).[`constructor`](#constructor)
+
+## Properties
+
+| Property | Modifier | Type | Description | Inherited from | Defined in |
+| ------ | ------ | ------ | ------ | ------ | ------ |
+| `cause?` | `public` | `unknown` | - | [`PactoError`](#class.pactoerror).[`cause`](#cause) | node\_modules/typescript/lib/lib.es2022.error.d.ts:26 |
+| `code` | `readonly` | `string` | - | [`PactoError`](#class.pactoerror).[`code`](#code) | [packages/connect-core/src/errors.ts:17](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/errors.ts#L17) |
+| `message` | `public` | `string` | - | [`PactoError`](#class.pactoerror).[`message`](#message) | node\_modules/typescript/lib/lib.es5.d.ts:1077 |
+| `name` | `public` | `string` | - | [`PactoError`](#class.pactoerror).[`name`](#name) | node\_modules/typescript/lib/lib.es5.d.ts:1076 |
+| `stack?` | `public` | `string` | - | [`PactoError`](#class.pactoerror).[`stack`](#stack) | node\_modules/typescript/lib/lib.es5.d.ts:1078 |
+| `type` | `readonly` | `string` | - | [`PactoError`](#class.pactoerror).[`type`](#type) | [packages/connect-core/src/errors.ts:16](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/errors.ts#L16) |
+| `stackTraceLimit` | `static` | `number` | The `Error.stackTraceLimit` property specifies the number of stack frames collected by a stack trace (whether generated by `new Error().stack` or `Error.captureStackTrace(obj)`). The default value is `10` but may be set to any valid JavaScript number. Changes will affect any stack trace captured _after_ the value has been changed. If set to a non-number value, or set to a negative number, stack traces will not capture any frames. | [`PactoError`](#class.pactoerror).[`stackTraceLimit`](#stacktracelimit) | node\_modules/@types/node/globals.d.ts:68 |
+
+## Methods
+
+### captureStackTrace()
+
+```ts
+static captureStackTrace(targetObject, constructorOpt?): void;
+```
+
+Defined in: node\_modules/@types/node/globals.d.ts:52
+
+Creates a `.stack` property on `targetObject`, which when accessed returns
+a string representing the location in the code at which
+`Error.captureStackTrace()` was called.
+
+```js
+const myObject = {};
+Error.captureStackTrace(myObject);
+myObject.stack; // Similar to `new Error().stack`
+```
+
+The first line of the trace will be prefixed with
+`${myObject.name}: ${myObject.message}`.
+
+The optional `constructorOpt` argument accepts a function. If given, all frames
+above `constructorOpt`, including `constructorOpt`, will be omitted from the
+generated stack trace.
+
+The `constructorOpt` argument is useful for hiding implementation
+details of error generation from the user. For instance:
+
+```js
+function a() {
+ b();
+}
+
+function b() {
+ c();
+}
+
+function c() {
+ // Create an error without stack trace to avoid calculating the stack trace twice.
+ const { stackTraceLimit } = Error;
+ Error.stackTraceLimit = 0;
+ const error = new Error();
+ Error.stackTraceLimit = stackTraceLimit;
+
+ // Capture the stack trace above function b
+ Error.captureStackTrace(error, b); // Neither function c, nor b is included in the stack trace
+ throw error;
+}
+
+a();
+```
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `targetObject` | `object` |
+| `constructorOpt?` | `Function` |
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+[`PactoError`](#class.pactoerror).[`captureStackTrace`](#capturestacktrace)
+
+***
+
+### prepareStackTrace()
+
+```ts
+static prepareStackTrace(err, stackTraces): any;
+```
+
+Defined in: node\_modules/@types/node/globals.d.ts:56
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `err` | `Error` |
+| `stackTraces` | `CallSite`[] |
+
+#### Returns
+
+`any`
+
+#### See
+
+https://v8.dev/docs/stack-trace-api#customizing-stack-traces
+
+#### Inherited from
+
+[`PactoError`](#class.pactoerror).[`prepareStackTrace`](#preparestacktrace)
+
+
+---
+
+# Class: PactoRateLimitError
+
+Defined in: [packages/connect-core/src/errors.ts:39](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/errors.ts#L39)
+
+## Extends
+
+- [`PactoError`](#class.pactoerror)
+
+## Constructors
+
+### Constructor
+
+```ts
+new PactoRateLimitError(
+ code,
+ message,
+ retryAfter?): PactoRateLimitError;
+```
+
+Defined in: [packages/connect-core/src/errors.ts:42](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/errors.ts#L42)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `code` | `string` |
+| `message` | `string` |
+| `retryAfter?` | `number` |
+
+#### Returns
+
+`PactoRateLimitError`
+
+#### Overrides
+
+[`PactoError`](#class.pactoerror).[`constructor`](#constructor)
+
+## Properties
+
+| Property | Modifier | Type | Description | Inherited from | Defined in |
+| ------ | ------ | ------ | ------ | ------ | ------ |
+| `cause?` | `public` | `unknown` | - | [`PactoError`](#class.pactoerror).[`cause`](#cause) | node\_modules/typescript/lib/lib.es2022.error.d.ts:26 |
+| `code` | `readonly` | `string` | - | [`PactoError`](#class.pactoerror).[`code`](#code) | [packages/connect-core/src/errors.ts:17](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/errors.ts#L17) |
+| `message` | `public` | `string` | - | [`PactoError`](#class.pactoerror).[`message`](#message) | node\_modules/typescript/lib/lib.es5.d.ts:1077 |
+| `name` | `public` | `string` | - | [`PactoError`](#class.pactoerror).[`name`](#name) | node\_modules/typescript/lib/lib.es5.d.ts:1076 |
+| `retryAfter?` | `readonly` | `number` | - | - | [packages/connect-core/src/errors.ts:40](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/errors.ts#L40) |
+| `stack?` | `public` | `string` | - | [`PactoError`](#class.pactoerror).[`stack`](#stack) | node\_modules/typescript/lib/lib.es5.d.ts:1078 |
+| `type` | `readonly` | `string` | - | [`PactoError`](#class.pactoerror).[`type`](#type) | [packages/connect-core/src/errors.ts:16](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/errors.ts#L16) |
+| `stackTraceLimit` | `static` | `number` | The `Error.stackTraceLimit` property specifies the number of stack frames collected by a stack trace (whether generated by `new Error().stack` or `Error.captureStackTrace(obj)`). The default value is `10` but may be set to any valid JavaScript number. Changes will affect any stack trace captured _after_ the value has been changed. If set to a non-number value, or set to a negative number, stack traces will not capture any frames. | [`PactoError`](#class.pactoerror).[`stackTraceLimit`](#stacktracelimit) | node\_modules/@types/node/globals.d.ts:68 |
+
+## Methods
+
+### captureStackTrace()
+
+```ts
+static captureStackTrace(targetObject, constructorOpt?): void;
+```
+
+Defined in: node\_modules/@types/node/globals.d.ts:52
+
+Creates a `.stack` property on `targetObject`, which when accessed returns
+a string representing the location in the code at which
+`Error.captureStackTrace()` was called.
+
+```js
+const myObject = {};
+Error.captureStackTrace(myObject);
+myObject.stack; // Similar to `new Error().stack`
+```
+
+The first line of the trace will be prefixed with
+`${myObject.name}: ${myObject.message}`.
+
+The optional `constructorOpt` argument accepts a function. If given, all frames
+above `constructorOpt`, including `constructorOpt`, will be omitted from the
+generated stack trace.
+
+The `constructorOpt` argument is useful for hiding implementation
+details of error generation from the user. For instance:
+
+```js
+function a() {
+ b();
+}
+
+function b() {
+ c();
+}
+
+function c() {
+ // Create an error without stack trace to avoid calculating the stack trace twice.
+ const { stackTraceLimit } = Error;
+ Error.stackTraceLimit = 0;
+ const error = new Error();
+ Error.stackTraceLimit = stackTraceLimit;
+
+ // Capture the stack trace above function b
+ Error.captureStackTrace(error, b); // Neither function c, nor b is included in the stack trace
+ throw error;
+}
+
+a();
+```
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `targetObject` | `object` |
+| `constructorOpt?` | `Function` |
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+[`PactoError`](#class.pactoerror).[`captureStackTrace`](#capturestacktrace)
+
+***
+
+### prepareStackTrace()
+
+```ts
+static prepareStackTrace(err, stackTraces): any;
+```
+
+Defined in: node\_modules/@types/node/globals.d.ts:56
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `err` | `Error` |
+| `stackTraces` | `CallSite`[] |
+
+#### Returns
+
+`any`
+
+#### See
+
+https://v8.dev/docs/stack-trace-api#customizing-stack-traces
+
+#### Inherited from
+
+[`PactoError`](#class.pactoerror).[`prepareStackTrace`](#preparestacktrace)
+
+
+---
+
+# Class: PactoSession
+
+Defined in: [packages/connect-core/src/client.ts:73](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L73)
+
+## Constructors
+
+### Constructor
+
+```ts
+new PactoSession(client, data): PactoSession;
+```
+
+Defined in: [packages/connect-core/src/client.ts:81](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L81)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `client` | `InternalPactoClient` |
+| `data` | [`PactoSessionData`](#interface.pactosessiondata) |
+
+#### Returns
+
+`PactoSession`
+
+## Properties
+
+| Property | Modifier | Type | Defined in |
+| ------ | ------ | ------ | ------ |
+| `clientSecret` | `readonly` | `string` | [packages/connect-core/src/client.ts:75](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L75) |
+| `expiresAt` | `readonly` | `Date` | [packages/connect-core/src/client.ts:76](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L76) |
+| `mode` | `readonly` | [`CheckoutMode`](#typealias.checkoutmode) | [packages/connect-core/src/client.ts:77](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L77) |
+| `sessionId` | `readonly` | `string` | [packages/connect-core/src/client.ts:74](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L74) |
+
+## Methods
+
+### closeEvents()
+
+```ts
+closeEvents(): void;
+```
+
+Defined in: [packages/connect-core/src/client.ts:119](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L119)
+
+#### Returns
+
+`void`
+
+***
+
+### isExpired()
+
+```ts
+isExpired(): boolean;
+```
+
+Defined in: [packages/connect-core/src/client.ts:91](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L91)
+
+#### Returns
+
+`boolean`
+
+***
+
+### off()
+
+```ts
+off(event, handler): void;
+```
+
+Defined in: [packages/connect-core/src/client.ts:115](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L115)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `event` | `"escrow.funded"` \| `"fiat.reported"` \| `"released"` \| `"disputed"` |
+| `handler` | [`EscrowEventHandler`](#typealias.escroweventhandler) |
+
+#### Returns
+
+`void`
+
+***
+
+### on()
+
+```ts
+on(
+ event,
+ handler,
+ options?): void;
+```
+
+Defined in: [packages/connect-core/src/client.ts:100](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L100)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `event` | `"escrow.funded"` \| `"fiat.reported"` \| `"released"` \| `"disputed"` |
+| `handler` | [`EscrowEventHandler`](#typealias.escroweventhandler) |
+| `options?` | [`EscrowSubscribeOptions`](#interface.escrowsubscribeoptions) |
+
+#### Returns
+
+`void`
+
+***
+
+### refresh()
+
+```ts
+refresh(): Promise;
+```
+
+Defined in: [packages/connect-core/src/client.ts:95](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L95)
+
+#### Returns
+
+`Promise`\<`PactoSession`\>
+
+
+---
+
+# Class: PactoSessionError
+
+Defined in: [packages/connect-core/src/errors.ts:25](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/errors.ts#L25)
+
+## Extends
+
+- [`PactoError`](#class.pactoerror)
+
+## Constructors
+
+### Constructor
+
+```ts
+new PactoSessionError(code, message): PactoSessionError;
+```
+
+Defined in: [packages/connect-core/src/errors.ts:26](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/errors.ts#L26)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `code` | `"session_invalid"` \| `"session_expired"` |
+| `message` | `string` |
+
+#### Returns
+
+`PactoSessionError`
+
+#### Overrides
+
+[`PactoError`](#class.pactoerror).[`constructor`](#constructor)
+
+## Properties
+
+| Property | Modifier | Type | Description | Inherited from | Defined in |
+| ------ | ------ | ------ | ------ | ------ | ------ |
+| `cause?` | `public` | `unknown` | - | [`PactoError`](#class.pactoerror).[`cause`](#cause) | node\_modules/typescript/lib/lib.es2022.error.d.ts:26 |
+| `code` | `readonly` | `string` | - | [`PactoError`](#class.pactoerror).[`code`](#code) | [packages/connect-core/src/errors.ts:17](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/errors.ts#L17) |
+| `message` | `public` | `string` | - | [`PactoError`](#class.pactoerror).[`message`](#message) | node\_modules/typescript/lib/lib.es5.d.ts:1077 |
+| `name` | `public` | `string` | - | [`PactoError`](#class.pactoerror).[`name`](#name) | node\_modules/typescript/lib/lib.es5.d.ts:1076 |
+| `stack?` | `public` | `string` | - | [`PactoError`](#class.pactoerror).[`stack`](#stack) | node\_modules/typescript/lib/lib.es5.d.ts:1078 |
+| `type` | `readonly` | `string` | - | [`PactoError`](#class.pactoerror).[`type`](#type) | [packages/connect-core/src/errors.ts:16](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/errors.ts#L16) |
+| `stackTraceLimit` | `static` | `number` | The `Error.stackTraceLimit` property specifies the number of stack frames collected by a stack trace (whether generated by `new Error().stack` or `Error.captureStackTrace(obj)`). The default value is `10` but may be set to any valid JavaScript number. Changes will affect any stack trace captured _after_ the value has been changed. If set to a non-number value, or set to a negative number, stack traces will not capture any frames. | [`PactoError`](#class.pactoerror).[`stackTraceLimit`](#stacktracelimit) | node\_modules/@types/node/globals.d.ts:68 |
+
+## Methods
+
+### captureStackTrace()
+
+```ts
+static captureStackTrace(targetObject, constructorOpt?): void;
+```
+
+Defined in: node\_modules/@types/node/globals.d.ts:52
+
+Creates a `.stack` property on `targetObject`, which when accessed returns
+a string representing the location in the code at which
+`Error.captureStackTrace()` was called.
+
+```js
+const myObject = {};
+Error.captureStackTrace(myObject);
+myObject.stack; // Similar to `new Error().stack`
+```
+
+The first line of the trace will be prefixed with
+`${myObject.name}: ${myObject.message}`.
+
+The optional `constructorOpt` argument accepts a function. If given, all frames
+above `constructorOpt`, including `constructorOpt`, will be omitted from the
+generated stack trace.
+
+The `constructorOpt` argument is useful for hiding implementation
+details of error generation from the user. For instance:
+
+```js
+function a() {
+ b();
+}
+
+function b() {
+ c();
+}
+
+function c() {
+ // Create an error without stack trace to avoid calculating the stack trace twice.
+ const { stackTraceLimit } = Error;
+ Error.stackTraceLimit = 0;
+ const error = new Error();
+ Error.stackTraceLimit = stackTraceLimit;
+
+ // Capture the stack trace above function b
+ Error.captureStackTrace(error, b); // Neither function c, nor b is included in the stack trace
+ throw error;
+}
+
+a();
+```
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `targetObject` | `object` |
+| `constructorOpt?` | `Function` |
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+[`PactoError`](#class.pactoerror).[`captureStackTrace`](#capturestacktrace)
+
+***
+
+### prepareStackTrace()
+
+```ts
+static prepareStackTrace(err, stackTraces): any;
+```
+
+Defined in: node\_modules/@types/node/globals.d.ts:56
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `err` | `Error` |
+| `stackTraces` | `CallSite`[] |
+
+#### Returns
+
+`any`
+
+#### See
+
+https://v8.dev/docs/stack-trace-api#customizing-stack-traces
+
+#### Inherited from
+
+[`PactoError`](#class.pactoerror).[`prepareStackTrace`](#preparestacktrace)
+
+
+---
+
+# Function: createBridgeClient()
+
+```ts
+function createBridgeClient(options): BridgeClient;
+```
+
+Defined in: [packages/connect-core/src/bridge.ts:134](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L134)
+
+@pacto-connect/core
+
+Framework-agnostic SDK core for Pacto Connect.
+
+## Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `options` | [`BridgeClientOptions`](#interface.bridgeclientoptions) |
+
+## Returns
+
+[`BridgeClient`](#interface.bridgeclient)
+
+
+---
+
+# Function: createBridgeHost()
+
+```ts
+function createBridgeHost(options): BridgeHost;
+```
+
+Defined in: [packages/connect-core/src/bridge.ts:176](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L176)
+
+@pacto-connect/core
+
+Framework-agnostic SDK core for Pacto Connect.
+
+## Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `options` | [`BridgeHostOptions`](#interface.bridgehostoptions) |
+
+## Returns
+
+[`BridgeHost`](#interface.bridgehost)
+
+
+---
+
+# Function: init()
+
+```ts
+function init(options): PactoClient;
+```
+
+Defined in: [packages/connect-core/src/client.ts:221](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L221)
+
+Entry point for the Pacto Connect SDK.
+
+## Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `options` | [`PactoInitOptions`](#interface.pactoinitoptions) |
+
+## Returns
+
+[`PactoClient`](#interface.pactoclient)
+
+
+---
+
+# Function: isOriginAllowed()
+
+```ts
+function isOriginAllowed(origin, allowedOrigins): boolean;
+```
+
+Defined in: [packages/connect-core/src/bridge.ts:101](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L101)
+
+@pacto-connect/core
+
+Framework-agnostic SDK core for Pacto Connect.
+
+## Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `origin` | `string` |
+| `allowedOrigins` | `string`[] |
+
+## Returns
+
+`boolean`
+
+
+---
+
+# Function: isPactoBridgeEnvelope()
+
+```ts
+function isPactoBridgeEnvelope(value): value is PactoBridgeEnvelope;
+```
+
+Defined in: [packages/connect-core/src/bridge.ts:92](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L92)
+
+@pacto-connect/core
+
+Framework-agnostic SDK core for Pacto Connect.
+
+## Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `value` | `unknown` |
+
+## Returns
+
+`value is PactoBridgeEnvelope`
+
+
+---
+
+# Interface: BridgeClient
+
+Defined in: [packages/connect-core/src/bridge.ts:116](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L116)
+
+@pacto-connect/core
+
+Framework-agnostic SDK core for Pacto Connect.
+
+## Methods
+
+### close()
+
+```ts
+close(): void;
+```
+
+Defined in: [packages/connect-core/src/bridge.ts:119](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L119)
+
+#### Returns
+
+`void`
+
+***
+
+### listen()
+
+```ts
+listen(handler): () => void;
+```
+
+Defined in: [packages/connect-core/src/bridge.ts:118](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L118)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `handler` | (`message`) => `void` |
+
+#### Returns
+
+() => `void`
+
+***
+
+### post()
+
+```ts
+post(message): void;
+```
+
+Defined in: [packages/connect-core/src/bridge.ts:117](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L117)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `message` | [`PactoBridgeMessage`](#typealias.pactobridgemessage) |
+
+#### Returns
+
+`void`
+
+
+---
+
+# Interface: BridgeClientOptions
+
+Defined in: [packages/connect-core/src/bridge.ts:105](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L105)
+
+@pacto-connect/core
+
+Framework-agnostic SDK core for Pacto Connect.
+
+## Properties
+
+| Property | Type | Defined in |
+| ------ | ------ | ------ |
+| `allowedOrigins` | `string`[] | [packages/connect-core/src/bridge.ts:108](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L108) |
+| `targetOrigin` | `string` | [packages/connect-core/src/bridge.ts:107](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L107) |
+| `targetWindow?` | `Window` | [packages/connect-core/src/bridge.ts:106](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L106) |
+
+
+---
+
+# Interface: BridgeHost
+
+Defined in: [packages/connect-core/src/bridge.ts:122](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L122)
+
+@pacto-connect/core
+
+Framework-agnostic SDK core for Pacto Connect.
+
+## Methods
+
+### close()
+
+```ts
+close(): void;
+```
+
+Defined in: [packages/connect-core/src/bridge.ts:123](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L123)
+
+#### Returns
+
+`void`
+
+
+---
+
+# Interface: BridgeHostOptions
+
+Defined in: [packages/connect-core/src/bridge.ts:111](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L111)
+
+@pacto-connect/core
+
+Framework-agnostic SDK core for Pacto Connect.
+
+## Properties
+
+| Property | Type | Defined in |
+| ------ | ------ | ------ |
+| `allowedOrigins` | `string`[] | [packages/connect-core/src/bridge.ts:112](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L112) |
+| `onMessage` | (`message`, `event`) => `void` | [packages/connect-core/src/bridge.ts:113](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L113) |
+
+
+---
+
+# Interface: CheckoutFlowOptions
+
+Defined in: [packages/connect-core/src/checkout-flow.ts:32](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L32)
+
+## Properties
+
+| Property | Type | Description | Defined in |
+| ------ | ------ | ------ | ------ |
+| `gatewayUrl?` | `string` | - | [packages/connect-core/src/checkout-flow.ts:34](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L34) |
+| `listingId?` | `string` | - | [packages/connect-core/src/checkout-flow.ts:35](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L35) |
+| `mode?` | [`CheckoutMode`](#typealias.checkoutmode) | - | [packages/connect-core/src/checkout-flow.ts:36](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L36) |
+| `onChange?` | (`state`) => `void` | - | [packages/connect-core/src/checkout-flow.ts:40](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L40) |
+| `onComplete?` | (`escrow`) => `void` | - | [packages/connect-core/src/checkout-flow.ts:41](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L41) |
+| `onDispute?` | (`escrow`) => `void` | - | [packages/connect-core/src/checkout-flow.ts:42](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L42) |
+| `onError?` | (`error`) => `void` | - | [packages/connect-core/src/checkout-flow.ts:43](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L43) |
+| `publishableKey` | `string` | - | [packages/connect-core/src/checkout-flow.ts:33](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L33) |
+| `session?` | [`PactoSessionData`](#interface.pactosessiondata) | Pre-created session; skips POST /v1/session when provided. | [packages/connect-core/src/checkout-flow.ts:39](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L39) |
+| `testMode?` | `boolean` | - | [packages/connect-core/src/checkout-flow.ts:37](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L37) |
+
+
+---
+
+# Interface: CheckoutFlowState
+
+Defined in: [packages/connect-core/src/checkout-flow.ts:21](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L21)
+
+## Properties
+
+| Property | Type | Defined in |
+| ------ | ------ | ------ |
+| `error` | `Error` \| `null` | [packages/connect-core/src/checkout-flow.ts:28](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L28) |
+| `escrow` | [`Escrow`](#interface.escrow) \| `null` | [packages/connect-core/src/checkout-flow.ts:26](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L26) |
+| `listings` | [`Listing`](#interface.listing)[] | [packages/connect-core/src/checkout-flow.ts:24](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L24) |
+| `milestones` | [`EscrowEvent`](#interface.escrowevent)[] | [packages/connect-core/src/checkout-flow.ts:29](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L29) |
+| `quote` | [`Quote`](#interface.quote) \| `null` | [packages/connect-core/src/checkout-flow.ts:27](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L27) |
+| `selectedListing` | [`Listing`](#interface.listing) \| `null` | [packages/connect-core/src/checkout-flow.ts:25](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L25) |
+| `sessionId` | `string` \| `null` | [packages/connect-core/src/checkout-flow.ts:23](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L23) |
+| `step` | [`CheckoutStep`](#typealias.checkoutstep) | [packages/connect-core/src/checkout-flow.ts:22](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L22) |
+
+
+---
+
+# Interface: CreateEscrowParams
+
+Defined in: [packages/connect-core/src/resources.ts:50](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L50)
+
+## Properties
+
+| Property | Type | Defined in |
+| ------ | ------ | ------ |
+| `quoteId` | `string` | [packages/connect-core/src/resources.ts:51](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L51) |
+
+
+---
+
+# Interface: CreateQuoteParams
+
+Defined in: [packages/connect-core/src/resources.ts:26](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L26)
+
+## Properties
+
+| Property | Type | Defined in |
+| ------ | ------ | ------ |
+| `amount` | `string` | [packages/connect-core/src/resources.ts:29](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L29) |
+| `asset` | `string` | [packages/connect-core/src/resources.ts:28](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L28) |
+| `listingId?` | `string` | [packages/connect-core/src/resources.ts:27](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L27) |
+| `price` | `string` | [packages/connect-core/src/resources.ts:30](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L30) |
+| `side` | `"buy"` \| `"sell"` | [packages/connect-core/src/resources.ts:31](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L31) |
+
+
+---
+
+# Interface: DepositParams
+
+Defined in: [packages/connect-core/src/resources.ts:54](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L54)
+
+## Properties
+
+| Property | Type | Description | Defined in |
+| ------ | ------ | ------ | ------ |
+| `testMode?` | `boolean` | When true, simulates on-chain deposit in Gateway test mode. | [packages/connect-core/src/resources.ts:56](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L56) |
+
+
+---
+
+# Interface: Escrow
+
+Defined in: [packages/connect-core/src/resources.ts:34](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L34)
+
+## Properties
+
+| Property | Type | Defined in |
+| ------ | ------ | ------ |
+| `amount` | `string` | [packages/connect-core/src/resources.ts:38](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L38) |
+| `asset` | `string` | [packages/connect-core/src/resources.ts:39](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L39) |
+| `createdAt` | `string` | [packages/connect-core/src/resources.ts:40](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L40) |
+| `id` | `string` | [packages/connect-core/src/resources.ts:35](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L35) |
+| `quoteId` | `string` | [packages/connect-core/src/resources.ts:36](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L36) |
+| `status` | [`EscrowStatus`](#typealias.escrowstatus) | [packages/connect-core/src/resources.ts:37](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L37) |
+| `updatedAt` | `string` | [packages/connect-core/src/resources.ts:41](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L41) |
+
+
+---
+
+# Interface: EscrowEvent
+
+Defined in: [packages/connect-core/src/escrow-events.ts:16](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/escrow-events.ts#L16)
+
+## Properties
+
+| Property | Type | Defined in |
+| ------ | ------ | ------ |
+| `cursor` | `string` | [packages/connect-core/src/escrow-events.ts:17](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/escrow-events.ts#L17) |
+| `escrowId` | `string` | [packages/connect-core/src/escrow-events.ts:19](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/escrow-events.ts#L19) |
+| `milestone` | [`EscrowMilestone`](#typealias.escrowmilestone) | [packages/connect-core/src/escrow-events.ts:20](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/escrow-events.ts#L20) |
+| `occurredAt` | `string` | [packages/connect-core/src/escrow-events.ts:21](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/escrow-events.ts#L21) |
+| `type` | `"escrow.funded"` \| `"fiat.reported"` \| `"released"` \| `"disputed"` | [packages/connect-core/src/escrow-events.ts:18](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/escrow-events.ts#L18) |
+
+
+---
+
+# Interface: EscrowStatusResponse
+
+Defined in: [packages/connect-core/src/resources.ts:44](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L44)
+
+## Properties
+
+| Property | Type | Defined in |
+| ------ | ------ | ------ |
+| `id` | `string` | [packages/connect-core/src/resources.ts:45](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L45) |
+| `status` | [`EscrowStatus`](#typealias.escrowstatus) | [packages/connect-core/src/resources.ts:46](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L46) |
+| `updatedAt` | `string` | [packages/connect-core/src/resources.ts:47](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L47) |
+
+
+---
+
+# Interface: EscrowSubscribeOptions
+
+Defined in: [packages/connect-core/src/escrow-events.ts:26](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/escrow-events.ts#L26)
+
+## Properties
+
+| Property | Type | Defined in |
+| ------ | ------ | ------ |
+| `escrowId?` | `string` | [packages/connect-core/src/escrow-events.ts:27](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/escrow-events.ts#L27) |
+
+
+---
+
+# Interface: FiatReceiptParams
+
+Defined in: [packages/connect-core/src/resources.ts:61](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L61)
+
+## Properties
+
+| Property | Type | Description | Defined in |
+| ------ | ------ | ------ | ------ |
+| `method` | [`FiatPaymentMethod`](#typealias.fiatpaymentmethod) | - | [packages/connect-core/src/resources.ts:62](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L62) |
+| `receipt?` | `string` | Base64-encoded receipt image or document. | [packages/connect-core/src/resources.ts:65](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L65) |
+| `reference` | `string` | - | [packages/connect-core/src/resources.ts:63](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L63) |
+
+
+---
+
+# Interface: Listing
+
+Defined in: [packages/connect-core/src/resources.ts:5](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L5)
+
+## Properties
+
+| Property | Type | Defined in |
+| ------ | ------ | ------ |
+| `amount` | `string` | [packages/connect-core/src/resources.ts:8](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L8) |
+| `asset` | `string` | [packages/connect-core/src/resources.ts:7](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L7) |
+| `createdAt` | `string` | [packages/connect-core/src/resources.ts:12](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L12) |
+| `id` | `string` | [packages/connect-core/src/resources.ts:6](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L6) |
+| `price` | `string` | [packages/connect-core/src/resources.ts:9](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L9) |
+| `side` | `"buy"` \| `"sell"` | [packages/connect-core/src/resources.ts:10](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L10) |
+| `status` | `string` | [packages/connect-core/src/resources.ts:11](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L11) |
+
+
+---
+
+# Interface: PactoApiClient
+
+Defined in: [packages/connect-core/src/resources.ts:86](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L86)
+
+## Properties
+
+| Property | Modifier | Type | Defined in |
+| ------ | ------ | ------ | ------ |
+| `escrows` | `readonly` | `EscrowsResource` | [packages/connect-core/src/resources.ts:89](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L89) |
+| `listings` | `readonly` | `ListingsResource` | [packages/connect-core/src/resources.ts:87](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L87) |
+| `quotes` | `readonly` | `QuotesResource` | [packages/connect-core/src/resources.ts:88](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L88) |
+
+
+---
+
+# Interface: PactoBridgeEnvelope
+
+Defined in: [packages/connect-core/src/bridge.ts:28](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L28)
+
+@pacto-connect/core
+
+Framework-agnostic SDK core for Pacto Connect.
+
+## Properties
+
+| Property | Type | Defined in |
+| ------ | ------ | ------ |
+| `message` | [`PactoBridgeMessage`](#typealias.pactobridgemessage) | [packages/connect-core/src/bridge.ts:31](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L31) |
+| `source` | `"pacto-connect"` | [packages/connect-core/src/bridge.ts:30](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L30) |
+| `v` | `1` | [packages/connect-core/src/bridge.ts:29](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L29) |
+
+
+---
+
+# Interface: PactoBridgePayloadMap
+
+Defined in: [packages/connect-core/src/bridge.ts:15](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L15)
+
+@pacto-connect/core
+
+Framework-agnostic SDK core for Pacto Connect.
+
+## Properties
+
+| Property | Type | Defined in |
+| ------ | ------ | ------ |
+| `checkout:close` | `Record`\<`string`, `never`\> | [packages/connect-core/src/bridge.ts:17](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L17) |
+| `checkout:complete` | \{ `escrow`: [`Escrow`](#interface.escrow); \} | [packages/connect-core/src/bridge.ts:18](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L18) |
+| `checkout:complete.escrow` | [`Escrow`](#interface.escrow) | [packages/connect-core/src/bridge.ts:18](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L18) |
+| `checkout:dispute` | \{ `escrow`: [`Escrow`](#interface.escrow); \} | [packages/connect-core/src/bridge.ts:19](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L19) |
+| `checkout:dispute.escrow` | [`Escrow`](#interface.escrow) | [packages/connect-core/src/bridge.ts:19](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L19) |
+| `checkout:error` | \{ `message`: `string`; \} | [packages/connect-core/src/bridge.ts:20](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L20) |
+| `checkout:error.message` | `string` | [packages/connect-core/src/bridge.ts:20](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L20) |
+| `checkout:ready` | \{ `sessionId`: `string`; \} | [packages/connect-core/src/bridge.ts:16](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L16) |
+| `checkout:ready.sessionId` | `string` | [packages/connect-core/src/bridge.ts:16](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L16) |
+| `checkout:step` | \{ `step`: [`CheckoutStep`](#typealias.checkoutstep); \} | [packages/connect-core/src/bridge.ts:21](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L21) |
+| `checkout:step.step` | [`CheckoutStep`](#typealias.checkoutstep) | [packages/connect-core/src/bridge.ts:21](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L21) |
+
+
+---
+
+# Interface: PactoClient
+
+Defined in: [packages/connect-core/src/client.ts:43](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L43)
+
+## Properties
+
+| Property | Modifier | Type | Defined in |
+| ------ | ------ | ------ | ------ |
+| `gatewayUrl` | `readonly` | `string` | [packages/connect-core/src/client.ts:45](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L45) |
+| `publishableKey` | `readonly` | `string` | [packages/connect-core/src/client.ts:44](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L44) |
+
+## Methods
+
+### api()
+
+```ts
+api(session): PactoApiClient;
+```
+
+Defined in: [packages/connect-core/src/client.ts:48](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L48)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `session` | [`PactoSession`](#class.pactosession) |
+
+#### Returns
+
+[`PactoApiClient`](#interface.pactoapiclient)
+
+***
+
+### createCheckoutSession()
+
+```ts
+createCheckoutSession(params): Promise;
+```
+
+Defined in: [packages/connect-core/src/client.ts:46](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L46)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `params` | [`CreateCheckoutSessionParams`](#typealias.createcheckoutsessionparams) |
+
+#### Returns
+
+`Promise`\<[`PactoSession`](#class.pactosession)\>
+
+***
+
+### resumeCheckoutSession()
+
+```ts
+resumeCheckoutSession(data): PactoSession;
+```
+
+Defined in: [packages/connect-core/src/client.ts:47](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L47)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `data` | [`PactoSessionData`](#interface.pactosessiondata) |
+
+#### Returns
+
+[`PactoSession`](#class.pactosession)
+
+
+---
+
+# Interface: PactoInitOptions
+
+Defined in: [packages/connect-core/src/client.ts:17](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L17)
+
+## Properties
+
+| Property | Type | Description | Defined in |
+| ------ | ------ | ------ | ------ |
+| `baseDelayMs?` | `number` | Base delay in milliseconds for exponential backoff. | [packages/connect-core/src/client.ts:27](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L27) |
+| `gatewayUrl?` | `string` | Gateway base URL. Defaults to the hosted Pacto Connect gateway. | [packages/connect-core/src/client.ts:21](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L21) |
+| `maxReconnectAttempts?` | `number` | Maximum reconnect attempts for escrow event streams. | [packages/connect-core/src/client.ts:29](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L29) |
+| `maxRetries?` | `number` | Maximum retry attempts for transient failures. | [packages/connect-core/src/client.ts:25](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L25) |
+| `origin?` | `string` | Origin header for non-browser environments. | [packages/connect-core/src/client.ts:23](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L23) |
+| `publishableKey` | `string` | Publishable key issued by the Connect Gateway (pk_live_* / pk_test_*). | [packages/connect-core/src/client.ts:19](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L19) |
+
+
+---
+
+# Interface: PactoSessionData
+
+Defined in: [packages/connect-core/src/client.ts:36](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L36)
+
+## Properties
+
+| Property | Type | Defined in |
+| ------ | ------ | ------ |
+| `clientSecret` | `string` | [packages/connect-core/src/client.ts:38](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L38) |
+| `expiresAt` | `Date` | [packages/connect-core/src/client.ts:39](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L39) |
+| `mode` | [`CheckoutMode`](#typealias.checkoutmode) | [packages/connect-core/src/client.ts:40](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L40) |
+| `sessionId` | `string` | [packages/connect-core/src/client.ts:37](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L37) |
+
+
+---
+
+# Interface: Quote
+
+Defined in: [packages/connect-core/src/resources.ts:15](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L15)
+
+## Properties
+
+| Property | Type | Defined in |
+| ------ | ------ | ------ |
+| `amount` | `string` | [packages/connect-core/src/resources.ts:19](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L19) |
+| `asset` | `string` | [packages/connect-core/src/resources.ts:18](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L18) |
+| `createdAt` | `string` | [packages/connect-core/src/resources.ts:23](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L23) |
+| `expiresAt` | `string` | [packages/connect-core/src/resources.ts:22](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L22) |
+| `id` | `string` | [packages/connect-core/src/resources.ts:16](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L16) |
+| `listingId?` | `string` | [packages/connect-core/src/resources.ts:17](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L17) |
+| `price` | `string` | [packages/connect-core/src/resources.ts:20](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L20) |
+| `side` | `"buy"` \| `"sell"` | [packages/connect-core/src/resources.ts:21](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L21) |
+
+
+---
+
+# Type Alias: CheckoutMode
+
+```ts
+type CheckoutMode = "buy" | "sell";
+```
+
+Defined in: [packages/connect-core/src/client.ts:15](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L15)
+
+
+---
+
+# Type Alias: CheckoutStep
+
+```ts
+type CheckoutStep =
+ | "loading"
+ | "selectListing"
+ | "deposit"
+ | "uploadReceipt"
+ | "tracking"
+ | "success"
+ | "disputed"
+ | "error";
+```
+
+Defined in: [packages/connect-core/src/checkout-flow.ts:11](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/checkout-flow.ts#L11)
+
+
+---
+
+# Type Alias: CreateCheckoutSessionParams
+
+```ts
+type CreateCheckoutSessionParams =
+ | {
+ listingId: string;
+ mode: CheckoutMode;
+}
+ | {
+ mode: CheckoutMode;
+ quote: Record;
+};
+```
+
+Defined in: [packages/connect-core/src/client.ts:32](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L32)
+
+
+---
+
+# Type Alias: EscrowEventHandler
+
+```ts
+type EscrowEventHandler = (event) => void;
+```
+
+Defined in: [packages/connect-core/src/escrow-events.ts:24](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/escrow-events.ts#L24)
+
+## Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `event` | [`EscrowEvent`](#interface.escrowevent) |
+
+## Returns
+
+`void`
+
+
+---
+
+# Type Alias: EscrowEventName
+
+```ts
+type EscrowEventName = typeof ESCROW_EVENT_NAMES[number];
+```
+
+Defined in: [packages/connect-core/src/escrow-events.ts:11](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/escrow-events.ts#L11)
+
+
+---
+
+# Type Alias: EscrowMilestone
+
+```ts
+type EscrowMilestone = "funded" | "fiat_reported" | "released" | "disputed";
+```
+
+Defined in: [packages/connect-core/src/escrow-events.ts:14](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/escrow-events.ts#L14)
+
+Maps to Pacto P2P `escrow_milestones` lifecycle states.
+
+
+---
+
+# Type Alias: EscrowStatus
+
+```ts
+type EscrowStatus = "pending" | "active" | "funded" | "released" | "cancelled" | "disputed";
+```
+
+Defined in: [packages/connect-core/src/resources.ts:3](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L3)
+
+
+---
+
+# Type Alias: FiatPaymentMethod
+
+```ts
+type FiatPaymentMethod = "SINPE" | "SPEI";
+```
+
+Defined in: [packages/connect-core/src/resources.ts:59](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/resources.ts#L59)
+
+
+---
+
+# Type Alias: PactoBridgeEventType
+
+```ts
+type PactoBridgeEventType =
+ | "checkout:ready"
+ | "checkout:close"
+ | "checkout:complete"
+ | "checkout:dispute"
+ | "checkout:error"
+ | "checkout:step";
+```
+
+Defined in: [packages/connect-core/src/bridge.ts:7](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L7)
+
+@pacto-connect/core
+
+Framework-agnostic SDK core for Pacto Connect.
+
+
+---
+
+# Type Alias: PactoBridgeMessage\
+
+```ts
+type PactoBridgeMessage = { [K in PactoBridgeEventType]: { payload: PactoBridgePayloadMap[K]; type: K } }[T];
+```
+
+Defined in: [packages/connect-core/src/bridge.ts:24](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L24)
+
+@pacto-connect/core
+
+Framework-agnostic SDK core for Pacto Connect.
+
+## Type Parameters
+
+| Type Parameter | Default type |
+| ------ | ------ |
+| `T` *extends* [`PactoBridgeEventType`](#typealias.pactobridgeeventtype) | [`PactoBridgeEventType`](#typealias.pactobridgeeventtype) |
+
+
+---
+
+# Variable: DEFAULT\_GATEWAY\_URL
+
+```ts
+const DEFAULT_GATEWAY_URL: "https://connect.pacto.example" = 'https://connect.pacto.example';
+```
+
+Defined in: [packages/connect-core/src/client.ts:67](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L67)
+
+
+---
+
+# Variable: ESCROW\_EVENT\_NAMES
+
+```ts
+const ESCROW_EVENT_NAMES: readonly ["escrow.funded", "fiat.reported", "released", "disputed"];
+```
+
+Defined in: [packages/connect-core/src/escrow-events.ts:4](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/escrow-events.ts#L4)
+
+
+---
+
+# Variable: PACTO\_BRIDGE\_SOURCE
+
+```ts
+const PACTO_BRIDGE_SOURCE: "pacto-connect";
+```
+
+Defined in: [packages/connect-core/src/bridge.ts:4](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L4)
+
+@pacto-connect/core
+
+Framework-agnostic SDK core for Pacto Connect.
+
+
+---
+
+# Variable: PACTO\_BRIDGE\_VERSION
+
+```ts
+const PACTO_BRIDGE_VERSION: 1;
+```
+
+Defined in: [packages/connect-core/src/bridge.ts:5](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/bridge.ts#L5)
+
+@pacto-connect/core
+
+Framework-agnostic SDK core for Pacto Connect.
+
+
+---
+
+# Variable: Pacto
+
+```ts
+const Pacto: {
+ init: (options) => PactoClient;
+};
+```
+
+Defined in: [packages/connect-core/src/client.ts:229](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L229)
+
+## Type Declaration
+
+| Name | Type | Defined in |
+| ------ | ------ | ------ |
+| `init()` | (`options`) => [`PactoClient`](#interface.pactoclient) | [packages/connect-core/src/client.ts:229](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/client.ts#L229) |
+
+
+---
+
+# Variable: VERSION
+
+```ts
+const VERSION: "0.0.0" = '0.0.0';
+```
+
+Defined in: [packages/connect-core/src/index.ts:70](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-core/src/index.ts#L70)
diff --git a/apps/docs/pages/api-reference/elements.mdx b/apps/docs/pages/api-reference/elements.mdx
new file mode 100644
index 0000000..ce6d2bd
--- /dev/null
+++ b/apps/docs/pages/api-reference/elements.mdx
@@ -0,0 +1,4179 @@
+{/* This file is auto-generated by scripts/generate-api-docs.mts — do not edit by hand. */}
+{/* Regenerate: npm run generate:api-docs (from apps/docs) */}
+
+---
+title: '@pacto-connect/elements'
+---
+
+import { Callout } from 'nextra/components'
+
+
+ This file is auto-generated by `scripts/generate-api-docs.mts`. Do not edit by hand.
+ Run `npm run generate:api-docs` in `apps/docs` to refresh it.
+
+
+# @pacto-connect/elements
+
+```bash
+npm install @pacto-connect/elements
+```
+
+# Class: CheckoutView
+
+Defined in: [packages/connect-elements/src/ui.ts:47](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-elements/src/ui.ts#L47)
+
+## Constructors
+
+### Constructor
+
+```ts
+new CheckoutView(
+ container,
+ controller,
+ options): CheckoutView;
+```
+
+Defined in: [packages/connect-elements/src/ui.ts:52](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-elements/src/ui.ts#L52)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `container` | `HTMLElement` |
+| `controller` | `CheckoutFlowController` |
+| `options` | `CheckoutViewOptions` |
+
+#### Returns
+
+`CheckoutView`
+
+## Methods
+
+### destroy()
+
+```ts
+destroy(): void;
+```
+
+Defined in: [packages/connect-elements/src/ui.ts:131](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-elements/src/ui.ts#L131)
+
+#### Returns
+
+`void`
+
+***
+
+### render()
+
+```ts
+render(): void;
+```
+
+Defined in: [packages/connect-elements/src/ui.ts:58](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-elements/src/ui.ts#L58)
+
+#### Returns
+
+`void`
+
+
+---
+
+# Class: PactoCheckoutElement
+
+Defined in: [packages/connect-elements/src/element.ts:82](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-elements/src/element.ts#L82)
+
+## Extends
+
+- `HTMLElement`
+
+## Constructors
+
+### Constructor
+
+```ts
+new PactoCheckoutElement(): PactoCheckoutElement;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:13847
+
+#### Returns
+
+`PactoCheckoutElement`
+
+#### Inherited from
+
+```ts
+HTMLElement.constructor
+```
+
+## Properties
+
+| Property | Modifier | Type | Description | Inherited from | Defined in |
+| ------ | ------ | ------ | ------ | ------ | ------ |
+| `[InitialValue]?` | `public` | `string` | - | `HTMLElement.[InitialValue]` | node\_modules/@testing-library/user-event/dist/types/document/UI.d.ts:7 |
+| `[PointerEventsCheck]?` | `public` | \{ `1?`: `object`; `2?`: `object`; \} & \{ `result`: \| \{ `pointerEvents`: `string`; `tree`: `Element`[]; \} \| `undefined`; \} | - | `HTMLElement.[PointerEventsCheck]` | node\_modules/@testing-library/user-event/dist/types/utils/pointer/cssPointerEvents.d.ts:11 |
+| `[TrackChanges]?` | `public` | \{ `nextValue?`: `string`; `previousValue?`: `string`; `tracked?`: `string`[]; \} | - | `HTMLElement.[TrackChanges]` | node\_modules/@testing-library/user-event/dist/types/document/trackValue.d.ts:7 |
+| `[TrackChanges].nextValue?` | `public` | `string` | - | - | node\_modules/@testing-library/user-event/dist/types/document/trackValue.d.ts:10 |
+| `[TrackChanges].previousValue?` | `public` | `string` | - | - | node\_modules/@testing-library/user-event/dist/types/document/trackValue.d.ts:8 |
+| `[TrackChanges].tracked?` | `public` | `string`[] | - | - | node\_modules/@testing-library/user-event/dist/types/document/trackValue.d.ts:9 |
+| `[UISelection]?` | `public` | `UISelection` | - | `HTMLElement.[UISelection]` | node\_modules/@testing-library/user-event/dist/types/document/UI.d.ts:8 |
+| `[UIValue]?` | `public` | `string` | - | `HTMLElement.[UIValue]` | node\_modules/@testing-library/user-event/dist/types/document/UI.d.ts:6 |
+| `accessKey` | `public` | `string` | The **`HTMLElement.accessKey`** property sets the keystroke which a user can press to jump to a given element. [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/accessKey) | `HTMLElement.accessKey` | node\_modules/typescript/lib/lib.dom.d.ts:13688 |
+| `accessKeyLabel` | `readonly` | `string` | The **`HTMLElement.accessKeyLabel`** read-only property returns a string containing the element's browser-assigned access key (if any); otherwise it returns an empty string. [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/accessKeyLabel) | `HTMLElement.accessKeyLabel` | node\_modules/typescript/lib/lib.dom.d.ts:13694 |
+| `ariaActiveDescendantElement` | `public` | `Element` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaActiveDescendantElement) | `HTMLElement.ariaActiveDescendantElement` | node\_modules/typescript/lib/lib.dom.d.ts:2607 |
+| `ariaAtomic` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaAtomic) | `HTMLElement.ariaAtomic` | node\_modules/typescript/lib/lib.dom.d.ts:2609 |
+| `ariaAutoComplete` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaAutoComplete) | `HTMLElement.ariaAutoComplete` | node\_modules/typescript/lib/lib.dom.d.ts:2611 |
+| `ariaBrailleLabel` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaBrailleLabel) | `HTMLElement.ariaBrailleLabel` | node\_modules/typescript/lib/lib.dom.d.ts:2613 |
+| `ariaBrailleRoleDescription` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaBrailleRoleDescription) | `HTMLElement.ariaBrailleRoleDescription` | node\_modules/typescript/lib/lib.dom.d.ts:2615 |
+| `ariaBusy` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaBusy) | `HTMLElement.ariaBusy` | node\_modules/typescript/lib/lib.dom.d.ts:2617 |
+| `ariaChecked` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaChecked) | `HTMLElement.ariaChecked` | node\_modules/typescript/lib/lib.dom.d.ts:2619 |
+| `ariaColCount` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaColCount) | `HTMLElement.ariaColCount` | node\_modules/typescript/lib/lib.dom.d.ts:2621 |
+| `ariaColIndex` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaColIndex) | `HTMLElement.ariaColIndex` | node\_modules/typescript/lib/lib.dom.d.ts:2623 |
+| `ariaColIndexText` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaColIndexText) | `HTMLElement.ariaColIndexText` | node\_modules/typescript/lib/lib.dom.d.ts:2625 |
+| `ariaColSpan` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaColSpan) | `HTMLElement.ariaColSpan` | node\_modules/typescript/lib/lib.dom.d.ts:2627 |
+| `ariaControlsElements` | `public` | readonly `Element`[] \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaControlsElements) | `HTMLElement.ariaControlsElements` | node\_modules/typescript/lib/lib.dom.d.ts:2629 |
+| `ariaCurrent` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaCurrent) | `HTMLElement.ariaCurrent` | node\_modules/typescript/lib/lib.dom.d.ts:2631 |
+| `ariaDescribedByElements` | `public` | readonly `Element`[] \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDescribedByElements) | `HTMLElement.ariaDescribedByElements` | node\_modules/typescript/lib/lib.dom.d.ts:2633 |
+| `ariaDescription` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDescription) | `HTMLElement.ariaDescription` | node\_modules/typescript/lib/lib.dom.d.ts:2635 |
+| `ariaDetailsElements` | `public` | readonly `Element`[] \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDetailsElements) | `HTMLElement.ariaDetailsElements` | node\_modules/typescript/lib/lib.dom.d.ts:2637 |
+| `ariaDisabled` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDisabled) | `HTMLElement.ariaDisabled` | node\_modules/typescript/lib/lib.dom.d.ts:2639 |
+| `ariaErrorMessageElements` | `public` | readonly `Element`[] \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaErrorMessageElements) | `HTMLElement.ariaErrorMessageElements` | node\_modules/typescript/lib/lib.dom.d.ts:2641 |
+| `ariaExpanded` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaExpanded) | `HTMLElement.ariaExpanded` | node\_modules/typescript/lib/lib.dom.d.ts:2643 |
+| `ariaFlowToElements` | `public` | readonly `Element`[] \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaFlowToElements) | `HTMLElement.ariaFlowToElements` | node\_modules/typescript/lib/lib.dom.d.ts:2645 |
+| `ariaHasPopup` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaHasPopup) | `HTMLElement.ariaHasPopup` | node\_modules/typescript/lib/lib.dom.d.ts:2647 |
+| `ariaHidden` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaHidden) | `HTMLElement.ariaHidden` | node\_modules/typescript/lib/lib.dom.d.ts:2649 |
+| `ariaInvalid` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaInvalid) | `HTMLElement.ariaInvalid` | node\_modules/typescript/lib/lib.dom.d.ts:2651 |
+| `ariaKeyShortcuts` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaKeyShortcuts) | `HTMLElement.ariaKeyShortcuts` | node\_modules/typescript/lib/lib.dom.d.ts:2653 |
+| `ariaLabel` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLabel) | `HTMLElement.ariaLabel` | node\_modules/typescript/lib/lib.dom.d.ts:2655 |
+| `ariaLabelledByElements` | `public` | readonly `Element`[] \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLabelledByElements) | `HTMLElement.ariaLabelledByElements` | node\_modules/typescript/lib/lib.dom.d.ts:2657 |
+| `ariaLevel` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLevel) | `HTMLElement.ariaLevel` | node\_modules/typescript/lib/lib.dom.d.ts:2659 |
+| `ariaLive` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLive) | `HTMLElement.ariaLive` | node\_modules/typescript/lib/lib.dom.d.ts:2661 |
+| `ariaModal` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaModal) | `HTMLElement.ariaModal` | node\_modules/typescript/lib/lib.dom.d.ts:2663 |
+| `ariaMultiLine` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaMultiLine) | `HTMLElement.ariaMultiLine` | node\_modules/typescript/lib/lib.dom.d.ts:2665 |
+| `ariaMultiSelectable` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaMultiSelectable) | `HTMLElement.ariaMultiSelectable` | node\_modules/typescript/lib/lib.dom.d.ts:2667 |
+| `ariaOrientation` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaOrientation) | `HTMLElement.ariaOrientation` | node\_modules/typescript/lib/lib.dom.d.ts:2669 |
+| `ariaOwnsElements` | `public` | readonly `Element`[] \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaOwnsElements) | `HTMLElement.ariaOwnsElements` | node\_modules/typescript/lib/lib.dom.d.ts:2671 |
+| `ariaPlaceholder` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaPlaceholder) | `HTMLElement.ariaPlaceholder` | node\_modules/typescript/lib/lib.dom.d.ts:2673 |
+| `ariaPosInSet` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaPosInSet) | `HTMLElement.ariaPosInSet` | node\_modules/typescript/lib/lib.dom.d.ts:2675 |
+| `ariaPressed` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaPressed) | `HTMLElement.ariaPressed` | node\_modules/typescript/lib/lib.dom.d.ts:2677 |
+| `ariaReadOnly` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaReadOnly) | `HTMLElement.ariaReadOnly` | node\_modules/typescript/lib/lib.dom.d.ts:2679 |
+| `ariaRelevant` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaRelevant) | `HTMLElement.ariaRelevant` | node\_modules/typescript/lib/lib.dom.d.ts:2681 |
+| `ariaRequired` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaRequired) | `HTMLElement.ariaRequired` | node\_modules/typescript/lib/lib.dom.d.ts:2683 |
+| `ariaRoleDescription` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaRoleDescription) | `HTMLElement.ariaRoleDescription` | node\_modules/typescript/lib/lib.dom.d.ts:2685 |
+| `ariaRowCount` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaRowCount) | `HTMLElement.ariaRowCount` | node\_modules/typescript/lib/lib.dom.d.ts:2687 |
+| `ariaRowIndex` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaRowIndex) | `HTMLElement.ariaRowIndex` | node\_modules/typescript/lib/lib.dom.d.ts:2689 |
+| `ariaRowIndexText` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaRowIndexText) | `HTMLElement.ariaRowIndexText` | node\_modules/typescript/lib/lib.dom.d.ts:2691 |
+| `ariaRowSpan` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaRowSpan) | `HTMLElement.ariaRowSpan` | node\_modules/typescript/lib/lib.dom.d.ts:2693 |
+| `ariaSelected` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaSelected) | `HTMLElement.ariaSelected` | node\_modules/typescript/lib/lib.dom.d.ts:2695 |
+| `ariaSetSize` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaSetSize) | `HTMLElement.ariaSetSize` | node\_modules/typescript/lib/lib.dom.d.ts:2697 |
+| `ariaSort` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaSort) | `HTMLElement.ariaSort` | node\_modules/typescript/lib/lib.dom.d.ts:2699 |
+| `ariaValueMax` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaValueMax) | `HTMLElement.ariaValueMax` | node\_modules/typescript/lib/lib.dom.d.ts:2701 |
+| `ariaValueMin` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaValueMin) | `HTMLElement.ariaValueMin` | node\_modules/typescript/lib/lib.dom.d.ts:2703 |
+| `ariaValueNow` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaValueNow) | `HTMLElement.ariaValueNow` | node\_modules/typescript/lib/lib.dom.d.ts:2705 |
+| `ariaValueText` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaValueText) | `HTMLElement.ariaValueText` | node\_modules/typescript/lib/lib.dom.d.ts:2707 |
+| `assignedSlot` | `readonly` | `HTMLSlotElement` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/assignedSlot) | `HTMLElement.assignedSlot` | node\_modules/typescript/lib/lib.dom.d.ts:30826 |
+| `ATTRIBUTE_NODE` | `readonly` | `2` | - | `HTMLElement.ATTRIBUTE_NODE` | node\_modules/typescript/lib/lib.dom.d.ts:21835 |
+| `attributes` | `readonly` | `NamedNodeMap` | The **`Element.attributes`** property returns a live collection of all attribute nodes registered to the specified node. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/attributes) | `HTMLElement.attributes` | node\_modules/typescript/lib/lib.dom.d.ts:10707 |
+| `attributeStyleMap` | `readonly` | `StylePropertyMap` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attributeStyleMap) | `HTMLElement.attributeStyleMap` | node\_modules/typescript/lib/lib.dom.d.ts:11117 |
+| `autocapitalize` | `public` | `string` | The **`autocapitalize`** property of the HTMLElement interface represents the element's capitalization behavior for user input. [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/autocapitalize) | `HTMLElement.autocapitalize` | node\_modules/typescript/lib/lib.dom.d.ts:13700 |
+| `autocorrect` | `public` | `boolean` | The **`autocorrect`** property of the HTMLElement interface controls whether or not autocorrection of editable text is enabled for spelling and/or punctuation errors. [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/autocorrect) | `HTMLElement.autocorrect` | node\_modules/typescript/lib/lib.dom.d.ts:13706 |
+| `autofocus` | `public` | `boolean` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/autofocus) | `HTMLElement.autofocus` | node\_modules/typescript/lib/lib.dom.d.ts:16065 |
+| `baseURI` | `readonly` | `string` | The read-only **`baseURI`** property of the Node interface returns the absolute base URL of the document containing the node. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/baseURI) | `HTMLElement.baseURI` | node\_modules/typescript/lib/lib.dom.d.ts:21664 |
+| `CDATA_SECTION_NODE` | `readonly` | `4` | node is a CDATASection node. | `HTMLElement.CDATA_SECTION_NODE` | node\_modules/typescript/lib/lib.dom.d.ts:21839 |
+| `childElementCount` | `readonly` | `number` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/childElementCount) | `HTMLElement.childElementCount` | node\_modules/typescript/lib/lib.dom.d.ts:22668 |
+| `childNodes` | `readonly` | `NodeListOf`\<`ChildNode`\> | The read-only **`childNodes`** property of the Node interface returns a live the first child node is assigned index `0`. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/childNodes) | `HTMLElement.childNodes` | node\_modules/typescript/lib/lib.dom.d.ts:21670 |
+| `children` | `readonly` | `HTMLCollection` | Returns the child elements. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/children) | `HTMLElement.children` | node\_modules/typescript/lib/lib.dom.d.ts:22674 |
+| `className` | `public` | `string` | The **`className`** property of the of the specified element. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/className) | `HTMLElement.className` | node\_modules/typescript/lib/lib.dom.d.ts:10720 |
+| `clientHeight` | `readonly` | `number` | The **`clientHeight`** read-only property of the Element interface is zero for elements with no CSS or inline layout boxes; otherwise, it's the inner height of an element in pixels. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/clientHeight) | `HTMLElement.clientHeight` | node\_modules/typescript/lib/lib.dom.d.ts:10726 |
+| `clientLeft` | `readonly` | `number` | The **`clientLeft`** read-only property of the Element interface returns the width of the left border of an element in pixels. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/clientLeft) | `HTMLElement.clientLeft` | node\_modules/typescript/lib/lib.dom.d.ts:10732 |
+| `clientTop` | `readonly` | `number` | The **`clientTop`** read-only property of the Element interface returns the width of the top border of an element in pixels. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/clientTop) | `HTMLElement.clientTop` | node\_modules/typescript/lib/lib.dom.d.ts:10738 |
+| `clientWidth` | `readonly` | `number` | The **`clientWidth`** read-only property of the Element interface is zero for inline elements and elements with no CSS; otherwise, it's the inner width of an element in pixels. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/clientWidth) | `HTMLElement.clientWidth` | node\_modules/typescript/lib/lib.dom.d.ts:10744 |
+| `COMMENT_NODE` | `readonly` | `8` | node is a Comment node. | `HTMLElement.COMMENT_NODE` | node\_modules/typescript/lib/lib.dom.d.ts:21845 |
+| `contentEditable` | `public` | `string` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/contentEditable) | `HTMLElement.contentEditable` | node\_modules/typescript/lib/lib.dom.d.ts:11125 |
+| `currentCSSZoom` | `readonly` | `number` | The **`currentCSSZoom`** read-only property of the Element interface provides the 'effective' CSS `zoom` of an element, taking into account the zoom applied to the element and all its parent elements. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/currentCSSZoom) | `HTMLElement.currentCSSZoom` | node\_modules/typescript/lib/lib.dom.d.ts:10750 |
+| `dataset` | `readonly` | `DOMStringMap` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dataset) | `HTMLElement.dataset` | node\_modules/typescript/lib/lib.dom.d.ts:16067 |
+| `dir` | `public` | `string` | The **`HTMLElement.dir`** property indicates the text writing directionality of the content of the current element. [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dir) | `HTMLElement.dir` | node\_modules/typescript/lib/lib.dom.d.ts:13712 |
+| `DOCUMENT_FRAGMENT_NODE` | `readonly` | `11` | node is a DocumentFragment node. | `HTMLElement.DOCUMENT_FRAGMENT_NODE` | node\_modules/typescript/lib/lib.dom.d.ts:21851 |
+| `DOCUMENT_NODE` | `readonly` | `9` | node is a document. | `HTMLElement.DOCUMENT_NODE` | node\_modules/typescript/lib/lib.dom.d.ts:21847 |
+| `DOCUMENT_POSITION_CONTAINED_BY` | `readonly` | `16` | Set when other is a descendant of node. | `HTMLElement.DOCUMENT_POSITION_CONTAINED_BY` | node\_modules/typescript/lib/lib.dom.d.ts:21862 |
+| `DOCUMENT_POSITION_CONTAINS` | `readonly` | `8` | Set when other is an ancestor of node. | `HTMLElement.DOCUMENT_POSITION_CONTAINS` | node\_modules/typescript/lib/lib.dom.d.ts:21860 |
+| `DOCUMENT_POSITION_DISCONNECTED` | `readonly` | `1` | Set when node and other are not in the same tree. | `HTMLElement.DOCUMENT_POSITION_DISCONNECTED` | node\_modules/typescript/lib/lib.dom.d.ts:21854 |
+| `DOCUMENT_POSITION_FOLLOWING` | `readonly` | `4` | Set when other is following node. | `HTMLElement.DOCUMENT_POSITION_FOLLOWING` | node\_modules/typescript/lib/lib.dom.d.ts:21858 |
+| `DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC` | `readonly` | `32` | - | `HTMLElement.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC` | node\_modules/typescript/lib/lib.dom.d.ts:21863 |
+| `DOCUMENT_POSITION_PRECEDING` | `readonly` | `2` | Set when other is preceding node. | `HTMLElement.DOCUMENT_POSITION_PRECEDING` | node\_modules/typescript/lib/lib.dom.d.ts:21856 |
+| `DOCUMENT_TYPE_NODE` | `readonly` | `10` | node is a doctype. | `HTMLElement.DOCUMENT_TYPE_NODE` | node\_modules/typescript/lib/lib.dom.d.ts:21849 |
+| `draggable` | `public` | `boolean` | The **`draggable`** property of the HTMLElement interface gets and sets a Boolean primitive indicating if the element is draggable. [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/draggable) | `HTMLElement.draggable` | node\_modules/typescript/lib/lib.dom.d.ts:13718 |
+| `ELEMENT_NODE` | `readonly` | `1` | node is an element. | `HTMLElement.ELEMENT_NODE` | node\_modules/typescript/lib/lib.dom.d.ts:21834 |
+| `enterKeyHint` | `public` | `string` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/enterKeyHint) | `HTMLElement.enterKeyHint` | node\_modules/typescript/lib/lib.dom.d.ts:11127 |
+| `ENTITY_NODE` | `readonly` | `6` | - | `HTMLElement.ENTITY_NODE` | node\_modules/typescript/lib/lib.dom.d.ts:21841 |
+| `ENTITY_REFERENCE_NODE` | `readonly` | `5` | - | `HTMLElement.ENTITY_REFERENCE_NODE` | node\_modules/typescript/lib/lib.dom.d.ts:21840 |
+| `firstChild` | `readonly` | `ChildNode` \| `null` | The read-only **`firstChild`** property of the Node interface returns the node's first child in the tree, or `null` if the node has no children. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/firstChild) | `HTMLElement.firstChild` | node\_modules/typescript/lib/lib.dom.d.ts:21676 |
+| `firstElementChild` | `readonly` | `Element` \| `null` | Returns the first child that is an element, and null otherwise. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/firstElementChild) | `HTMLElement.firstElementChild` | node\_modules/typescript/lib/lib.dom.d.ts:22680 |
+| `hidden` | `public` | `boolean` | The HTMLElement property **`hidden`** reflects the value of the element's `hidden` attribute. [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/hidden) | `HTMLElement.hidden` | node\_modules/typescript/lib/lib.dom.d.ts:13724 |
+| `id` | `public` | `string` | The **`id`** property of the Element interface represents the element's identifier, reflecting the **`id`** global attribute. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/id) | `HTMLElement.id` | node\_modules/typescript/lib/lib.dom.d.ts:10756 |
+| `inert` | `public` | `boolean` | The HTMLElement property **`inert`** reflects the value of the element's `inert` attribute. [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/inert) | `HTMLElement.inert` | node\_modules/typescript/lib/lib.dom.d.ts:13730 |
+| `innerHTML` | `public` | `string` | The **`innerHTML`** property of the Element interface gets or sets the HTML or XML markup contained within the element. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/innerHTML) | `HTMLElement.innerHTML` | node\_modules/typescript/lib/lib.dom.d.ts:10762 |
+| `innerText` | `public` | `string` | The **`innerText`** property of the HTMLElement interface represents the rendered text content of a node and its descendants. [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/innerText) | `HTMLElement.innerText` | node\_modules/typescript/lib/lib.dom.d.ts:13736 |
+| `inputMode` | `public` | `string` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/inputMode) | `HTMLElement.inputMode` | node\_modules/typescript/lib/lib.dom.d.ts:11129 |
+| `isConnected` | `readonly` | `boolean` | The read-only **`isConnected`** property of the Node interface returns a boolean indicating whether the node is connected (directly or indirectly) to a Document object. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/isConnected) | `HTMLElement.isConnected` | node\_modules/typescript/lib/lib.dom.d.ts:21682 |
+| `isContentEditable` | `readonly` | `boolean` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/isContentEditable) | `HTMLElement.isContentEditable` | node\_modules/typescript/lib/lib.dom.d.ts:11131 |
+| `lang` | `public` | `string` | The **`lang`** property of the HTMLElement interface indicates the base language of an element's attribute values and text content, in the form of a MISSING: RFC(5646, 'BCP 47 language identifier tag')]. [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/lang) | `HTMLElement.lang` | node\_modules/typescript/lib/lib.dom.d.ts:13742 |
+| `lastChild` | `readonly` | `ChildNode` \| `null` | The read-only **`lastChild`** property of the Node interface returns the last child of the node, or `null` if there are no child nodes. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/lastChild) | `HTMLElement.lastChild` | node\_modules/typescript/lib/lib.dom.d.ts:21688 |
+| `lastElementChild` | `readonly` | `Element` \| `null` | Returns the last child that is an element, and null otherwise. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/lastElementChild) | `HTMLElement.lastElementChild` | node\_modules/typescript/lib/lib.dom.d.ts:22686 |
+| `localName` | `readonly` | `string` | The **`Element.localName`** read-only property returns the local part of the qualified name of an element. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/localName) | `HTMLElement.localName` | node\_modules/typescript/lib/lib.dom.d.ts:10768 |
+| `namespaceURI` | `readonly` | `string` \| `null` | The **`Element.namespaceURI`** read-only property returns the namespace URI of the element, or `null` if the element is not in a namespace. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/namespaceURI) | `HTMLElement.namespaceURI` | node\_modules/typescript/lib/lib.dom.d.ts:10774 |
+| `nextElementSibling` | `readonly` | `Element` \| `null` | Returns the first following sibling that is an element, and null otherwise. [MDN Reference](https://developer.mozilla.org/docs/Web/API/CharacterData/nextElementSibling) | `HTMLElement.nextElementSibling` | node\_modules/typescript/lib/lib.dom.d.ts:22003 |
+| `nextSibling` | `readonly` | `ChildNode` \| `null` | The read-only **`nextSibling`** property of the Node interface returns the node immediately following the specified one in their parent's Node.childNodes, or returns `null` if the specified node is the last child in the parent element. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/nextSibling) | `HTMLElement.nextSibling` | node\_modules/typescript/lib/lib.dom.d.ts:21694 |
+| `nodeName` | `readonly` | `string` | The read-only **`nodeName`** property of Node returns the name of the current node as a string. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/nodeName) | `HTMLElement.nodeName` | node\_modules/typescript/lib/lib.dom.d.ts:21700 |
+| `nodeType` | `readonly` | `number` | The read-only **`nodeType`** property of a Node interface is an integer that identifies what the node is. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/nodeType) | `HTMLElement.nodeType` | node\_modules/typescript/lib/lib.dom.d.ts:21706 |
+| `nodeValue` | `public` | `string` \| `null` | The **`nodeValue`** property of the Node interface returns or sets the value of the current node. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/nodeValue) | `HTMLElement.nodeValue` | node\_modules/typescript/lib/lib.dom.d.ts:21712 |
+| `nonce?` | `public` | `string` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/nonce) | `HTMLElement.nonce` | node\_modules/typescript/lib/lib.dom.d.ts:16069 |
+| `NOTATION_NODE` | `readonly` | `12` | - | `HTMLElement.NOTATION_NODE` | node\_modules/typescript/lib/lib.dom.d.ts:21852 |
+| `offsetHeight` | `readonly` | `number` | The **`offsetHeight`** read-only property of the HTMLElement interface returns the height of an element, including vertical padding and borders, as an integer. [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/offsetHeight) | `HTMLElement.offsetHeight` | node\_modules/typescript/lib/lib.dom.d.ts:13748 |
+| `offsetLeft` | `readonly` | `number` | The **`offsetLeft`** read-only property of the HTMLElement interface returns the number of pixels that the _upper left corner_ of the current element is offset to the left within the HTMLElement.offsetParent node. [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/offsetLeft) | `HTMLElement.offsetLeft` | node\_modules/typescript/lib/lib.dom.d.ts:13754 |
+| `offsetParent` | `readonly` | `Element` \| `null` | The **`HTMLElement.offsetParent`** read-only property returns a reference to the element which is the closest (nearest in the containment hierarchy) positioned ancestor element. [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/offsetParent) | `HTMLElement.offsetParent` | node\_modules/typescript/lib/lib.dom.d.ts:13760 |
+| `offsetTop` | `readonly` | `number` | The **`offsetTop`** read-only property of the HTMLElement interface returns the distance from the outer border of the current element (including its margin) to the top padding edge of the HTMLelement.offsetParent, the _closest positioned_ ancestor element. [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/offsetTop) | `HTMLElement.offsetTop` | node\_modules/typescript/lib/lib.dom.d.ts:13766 |
+| `offsetWidth` | `readonly` | `number` | The **`offsetWidth`** read-only property of the HTMLElement interface returns the layout width of an element as an integer. [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/offsetWidth) | `HTMLElement.offsetWidth` | node\_modules/typescript/lib/lib.dom.d.ts:13772 |
+| `onabort` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/abort_event) | `HTMLElement.onabort` | node\_modules/typescript/lib/lib.dom.d.ts:12743 |
+| `onanimationcancel` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animationcancel_event) | `HTMLElement.onanimationcancel` | node\_modules/typescript/lib/lib.dom.d.ts:12745 |
+| `onanimationend` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animationend_event) | `HTMLElement.onanimationend` | node\_modules/typescript/lib/lib.dom.d.ts:12747 |
+| `onanimationiteration` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animationiteration_event) | `HTMLElement.onanimationiteration` | node\_modules/typescript/lib/lib.dom.d.ts:12749 |
+| `onanimationstart` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animationstart_event) | `HTMLElement.onanimationstart` | node\_modules/typescript/lib/lib.dom.d.ts:12751 |
+| `onauxclick` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/auxclick_event) | `HTMLElement.onauxclick` | node\_modules/typescript/lib/lib.dom.d.ts:12753 |
+| `onbeforeinput` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/beforeinput_event) | `HTMLElement.onbeforeinput` | node\_modules/typescript/lib/lib.dom.d.ts:12755 |
+| `onbeforematch` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/beforematch_event) | `HTMLElement.onbeforematch` | node\_modules/typescript/lib/lib.dom.d.ts:12757 |
+| `onbeforetoggle` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforetoggle_event) | `HTMLElement.onbeforetoggle` | node\_modules/typescript/lib/lib.dom.d.ts:12759 |
+| `onblur` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/blur_event) | `HTMLElement.onblur` | node\_modules/typescript/lib/lib.dom.d.ts:12761 |
+| `oncancel` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/cancel_event) | `HTMLElement.oncancel` | node\_modules/typescript/lib/lib.dom.d.ts:12763 |
+| `oncanplay` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/canplay_event) | `HTMLElement.oncanplay` | node\_modules/typescript/lib/lib.dom.d.ts:12765 |
+| `oncanplaythrough` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/canplaythrough_event) | `HTMLElement.oncanplaythrough` | node\_modules/typescript/lib/lib.dom.d.ts:12767 |
+| `onchange` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/change_event) | `HTMLElement.onchange` | node\_modules/typescript/lib/lib.dom.d.ts:12769 |
+| `onclick` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/click_event) | `HTMLElement.onclick` | node\_modules/typescript/lib/lib.dom.d.ts:12771 |
+| `onclose` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/close_event) | `HTMLElement.onclose` | node\_modules/typescript/lib/lib.dom.d.ts:12773 |
+| `oncontextlost` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCanvasElement/contextlost_event) | `HTMLElement.oncontextlost` | node\_modules/typescript/lib/lib.dom.d.ts:12775 |
+| `oncontextmenu` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/contextmenu_event) | `HTMLElement.oncontextmenu` | node\_modules/typescript/lib/lib.dom.d.ts:12777 |
+| `oncontextrestored` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCanvasElement/contextrestored_event) | `HTMLElement.oncontextrestored` | node\_modules/typescript/lib/lib.dom.d.ts:12779 |
+| `oncopy` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/copy_event) | `HTMLElement.oncopy` | node\_modules/typescript/lib/lib.dom.d.ts:12781 |
+| `oncuechange` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/cuechange_event) | `HTMLElement.oncuechange` | node\_modules/typescript/lib/lib.dom.d.ts:12783 |
+| `oncut` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/cut_event) | `HTMLElement.oncut` | node\_modules/typescript/lib/lib.dom.d.ts:12785 |
+| `ondblclick` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/dblclick_event) | `HTMLElement.ondblclick` | node\_modules/typescript/lib/lib.dom.d.ts:12787 |
+| `ondrag` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/drag_event) | `HTMLElement.ondrag` | node\_modules/typescript/lib/lib.dom.d.ts:12789 |
+| `ondragend` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dragend_event) | `HTMLElement.ondragend` | node\_modules/typescript/lib/lib.dom.d.ts:12791 |
+| `ondragenter` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dragenter_event) | `HTMLElement.ondragenter` | node\_modules/typescript/lib/lib.dom.d.ts:12793 |
+| `ondragleave` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dragleave_event) | `HTMLElement.ondragleave` | node\_modules/typescript/lib/lib.dom.d.ts:12795 |
+| `ondragover` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dragover_event) | `HTMLElement.ondragover` | node\_modules/typescript/lib/lib.dom.d.ts:12797 |
+| `ondragstart` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dragstart_event) | `HTMLElement.ondragstart` | node\_modules/typescript/lib/lib.dom.d.ts:12799 |
+| `ondrop` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/drop_event) | `HTMLElement.ondrop` | node\_modules/typescript/lib/lib.dom.d.ts:12801 |
+| `ondurationchange` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/durationchange_event) | `HTMLElement.ondurationchange` | node\_modules/typescript/lib/lib.dom.d.ts:12803 |
+| `onemptied` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/emptied_event) | `HTMLElement.onemptied` | node\_modules/typescript/lib/lib.dom.d.ts:12805 |
+| `onended` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/ended_event) | `HTMLElement.onended` | node\_modules/typescript/lib/lib.dom.d.ts:12807 |
+| `onerror` | `public` | `OnErrorEventHandler` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/error_event) | `HTMLElement.onerror` | node\_modules/typescript/lib/lib.dom.d.ts:12809 |
+| `onfocus` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/focus_event) | `HTMLElement.onfocus` | node\_modules/typescript/lib/lib.dom.d.ts:12811 |
+| `onformdata` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/formdata_event) | `HTMLElement.onformdata` | node\_modules/typescript/lib/lib.dom.d.ts:12813 |
+| `onfullscreenchange` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/fullscreenchange_event) | `HTMLElement.onfullscreenchange` | node\_modules/typescript/lib/lib.dom.d.ts:10776 |
+| `onfullscreenerror` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/fullscreenerror_event) | `HTMLElement.onfullscreenerror` | node\_modules/typescript/lib/lib.dom.d.ts:10778 |
+| `ongotpointercapture` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/gotpointercapture_event) | `HTMLElement.ongotpointercapture` | node\_modules/typescript/lib/lib.dom.d.ts:12815 |
+| `oninput` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/input_event) | `HTMLElement.oninput` | node\_modules/typescript/lib/lib.dom.d.ts:12817 |
+| `oninvalid` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/invalid_event) | `HTMLElement.oninvalid` | node\_modules/typescript/lib/lib.dom.d.ts:12819 |
+| `onkeydown` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/keydown_event) | `HTMLElement.onkeydown` | node\_modules/typescript/lib/lib.dom.d.ts:12821 |
+| ~~`onkeypress`~~ | `public` | ((`this`, `ev`) => `any`) \| `null` | **Deprecated** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/keypress_event) | `HTMLElement.onkeypress` | node\_modules/typescript/lib/lib.dom.d.ts:12827 |
+| `onkeyup` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/keyup_event) | `HTMLElement.onkeyup` | node\_modules/typescript/lib/lib.dom.d.ts:12829 |
+| `onload` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/load_event) | `HTMLElement.onload` | node\_modules/typescript/lib/lib.dom.d.ts:12831 |
+| `onloadeddata` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/loadeddata_event) | `HTMLElement.onloadeddata` | node\_modules/typescript/lib/lib.dom.d.ts:12833 |
+| `onloadedmetadata` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/loadedmetadata_event) | `HTMLElement.onloadedmetadata` | node\_modules/typescript/lib/lib.dom.d.ts:12835 |
+| `onloadstart` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/loadstart_event) | `HTMLElement.onloadstart` | node\_modules/typescript/lib/lib.dom.d.ts:12837 |
+| `onlostpointercapture` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/lostpointercapture_event) | `HTMLElement.onlostpointercapture` | node\_modules/typescript/lib/lib.dom.d.ts:12839 |
+| `onmousedown` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/mousedown_event) | `HTMLElement.onmousedown` | node\_modules/typescript/lib/lib.dom.d.ts:12841 |
+| `onmouseenter` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/mouseenter_event) | `HTMLElement.onmouseenter` | node\_modules/typescript/lib/lib.dom.d.ts:12843 |
+| `onmouseleave` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/mouseleave_event) | `HTMLElement.onmouseleave` | node\_modules/typescript/lib/lib.dom.d.ts:12845 |
+| `onmousemove` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/mousemove_event) | `HTMLElement.onmousemove` | node\_modules/typescript/lib/lib.dom.d.ts:12847 |
+| `onmouseout` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/mouseout_event) | `HTMLElement.onmouseout` | node\_modules/typescript/lib/lib.dom.d.ts:12849 |
+| `onmouseover` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/mouseover_event) | `HTMLElement.onmouseover` | node\_modules/typescript/lib/lib.dom.d.ts:12851 |
+| `onmouseup` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/mouseup_event) | `HTMLElement.onmouseup` | node\_modules/typescript/lib/lib.dom.d.ts:12853 |
+| `onpaste` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/paste_event) | `HTMLElement.onpaste` | node\_modules/typescript/lib/lib.dom.d.ts:12855 |
+| `onpause` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/pause_event) | `HTMLElement.onpause` | node\_modules/typescript/lib/lib.dom.d.ts:12857 |
+| `onplay` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/play_event) | `HTMLElement.onplay` | node\_modules/typescript/lib/lib.dom.d.ts:12859 |
+| `onplaying` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/playing_event) | `HTMLElement.onplaying` | node\_modules/typescript/lib/lib.dom.d.ts:12861 |
+| `onpointercancel` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointercancel_event) | `HTMLElement.onpointercancel` | node\_modules/typescript/lib/lib.dom.d.ts:12863 |
+| `onpointerdown` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerdown_event) | `HTMLElement.onpointerdown` | node\_modules/typescript/lib/lib.dom.d.ts:12865 |
+| `onpointerenter` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerenter_event) | `HTMLElement.onpointerenter` | node\_modules/typescript/lib/lib.dom.d.ts:12867 |
+| `onpointerleave` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerleave_event) | `HTMLElement.onpointerleave` | node\_modules/typescript/lib/lib.dom.d.ts:12869 |
+| `onpointermove` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointermove_event) | `HTMLElement.onpointermove` | node\_modules/typescript/lib/lib.dom.d.ts:12871 |
+| `onpointerout` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerout_event) | `HTMLElement.onpointerout` | node\_modules/typescript/lib/lib.dom.d.ts:12873 |
+| `onpointerover` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerover_event) | `HTMLElement.onpointerover` | node\_modules/typescript/lib/lib.dom.d.ts:12875 |
+| `onpointerrawupdate` | `public` | ((`this`, `ev`) => `any`) \| `null` | Available only in secure contexts. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerrawupdate_event) | `HTMLElement.onpointerrawupdate` | node\_modules/typescript/lib/lib.dom.d.ts:12881 |
+| `onpointerup` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerup_event) | `HTMLElement.onpointerup` | node\_modules/typescript/lib/lib.dom.d.ts:12883 |
+| `onprogress` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/progress_event) | `HTMLElement.onprogress` | node\_modules/typescript/lib/lib.dom.d.ts:12885 |
+| `onratechange` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/ratechange_event) | `HTMLElement.onratechange` | node\_modules/typescript/lib/lib.dom.d.ts:12887 |
+| `onreset` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/reset_event) | `HTMLElement.onreset` | node\_modules/typescript/lib/lib.dom.d.ts:12889 |
+| `onresize` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/resize_event) | `HTMLElement.onresize` | node\_modules/typescript/lib/lib.dom.d.ts:12891 |
+| `onscroll` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/scroll_event) | `HTMLElement.onscroll` | node\_modules/typescript/lib/lib.dom.d.ts:12893 |
+| `onscrollend` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/scrollend_event) | `HTMLElement.onscrollend` | node\_modules/typescript/lib/lib.dom.d.ts:12895 |
+| `onsecuritypolicyviolation` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/securitypolicyviolation_event) | `HTMLElement.onsecuritypolicyviolation` | node\_modules/typescript/lib/lib.dom.d.ts:12897 |
+| `onseeked` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/seeked_event) | `HTMLElement.onseeked` | node\_modules/typescript/lib/lib.dom.d.ts:12899 |
+| `onseeking` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/seeking_event) | `HTMLElement.onseeking` | node\_modules/typescript/lib/lib.dom.d.ts:12901 |
+| `onselect` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/select_event) | `HTMLElement.onselect` | node\_modules/typescript/lib/lib.dom.d.ts:12903 |
+| `onselectionchange` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/selectionchange_event) | `HTMLElement.onselectionchange` | node\_modules/typescript/lib/lib.dom.d.ts:12905 |
+| `onselectstart` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/selectstart_event) | `HTMLElement.onselectstart` | node\_modules/typescript/lib/lib.dom.d.ts:12907 |
+| `onslotchange` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSlotElement/slotchange_event) | `HTMLElement.onslotchange` | node\_modules/typescript/lib/lib.dom.d.ts:12909 |
+| `onstalled` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/stalled_event) | `HTMLElement.onstalled` | node\_modules/typescript/lib/lib.dom.d.ts:12911 |
+| `onsubmit` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/submit_event) | `HTMLElement.onsubmit` | node\_modules/typescript/lib/lib.dom.d.ts:12913 |
+| `onsuspend` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/suspend_event) | `HTMLElement.onsuspend` | node\_modules/typescript/lib/lib.dom.d.ts:12915 |
+| `ontimeupdate` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/timeupdate_event) | `HTMLElement.ontimeupdate` | node\_modules/typescript/lib/lib.dom.d.ts:12917 |
+| `ontoggle` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/toggle_event) | `HTMLElement.ontoggle` | node\_modules/typescript/lib/lib.dom.d.ts:12919 |
+| `ontouchcancel?` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/touchcancel_event) | `HTMLElement.ontouchcancel` | node\_modules/typescript/lib/lib.dom.d.ts:12921 |
+| `ontouchend?` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/touchend_event) | `HTMLElement.ontouchend` | node\_modules/typescript/lib/lib.dom.d.ts:12923 |
+| `ontouchmove?` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/touchmove_event) | `HTMLElement.ontouchmove` | node\_modules/typescript/lib/lib.dom.d.ts:12925 |
+| `ontouchstart?` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/touchstart_event) | `HTMLElement.ontouchstart` | node\_modules/typescript/lib/lib.dom.d.ts:12927 |
+| `ontransitioncancel` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/transitioncancel_event) | `HTMLElement.ontransitioncancel` | node\_modules/typescript/lib/lib.dom.d.ts:12929 |
+| `ontransitionend` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/transitionend_event) | `HTMLElement.ontransitionend` | node\_modules/typescript/lib/lib.dom.d.ts:12931 |
+| `ontransitionrun` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/transitionrun_event) | `HTMLElement.ontransitionrun` | node\_modules/typescript/lib/lib.dom.d.ts:12933 |
+| `ontransitionstart` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/transitionstart_event) | `HTMLElement.ontransitionstart` | node\_modules/typescript/lib/lib.dom.d.ts:12935 |
+| `onvolumechange` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/volumechange_event) | `HTMLElement.onvolumechange` | node\_modules/typescript/lib/lib.dom.d.ts:12937 |
+| `onwaiting` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/waiting_event) | `HTMLElement.onwaiting` | node\_modules/typescript/lib/lib.dom.d.ts:12939 |
+| ~~`onwebkitanimationend`~~ | `public` | ((`this`, `ev`) => `any`) \| `null` | **Deprecated** This is a legacy alias of `onanimationend`. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animationend_event) | `HTMLElement.onwebkitanimationend` | node\_modules/typescript/lib/lib.dom.d.ts:12945 |
+| ~~`onwebkitanimationiteration`~~ | `public` | ((`this`, `ev`) => `any`) \| `null` | **Deprecated** This is a legacy alias of `onanimationiteration`. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animationiteration_event) | `HTMLElement.onwebkitanimationiteration` | node\_modules/typescript/lib/lib.dom.d.ts:12951 |
+| ~~`onwebkitanimationstart`~~ | `public` | ((`this`, `ev`) => `any`) \| `null` | **Deprecated** This is a legacy alias of `onanimationstart`. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animationstart_event) | `HTMLElement.onwebkitanimationstart` | node\_modules/typescript/lib/lib.dom.d.ts:12957 |
+| ~~`onwebkittransitionend`~~ | `public` | ((`this`, `ev`) => `any`) \| `null` | **Deprecated** This is a legacy alias of `ontransitionend`. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/transitionend_event) | `HTMLElement.onwebkittransitionend` | node\_modules/typescript/lib/lib.dom.d.ts:12963 |
+| `onwheel` | `public` | ((`this`, `ev`) => `any`) \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/wheel_event) | `HTMLElement.onwheel` | node\_modules/typescript/lib/lib.dom.d.ts:12965 |
+| `outerHTML` | `public` | `string` | The **`outerHTML`** attribute of the Element DOM interface gets the serialized HTML fragment describing the element including its descendants. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/outerHTML) | `HTMLElement.outerHTML` | node\_modules/typescript/lib/lib.dom.d.ts:10784 |
+| `outerText` | `public` | `string` | The **`outerText`** property of the HTMLElement interface returns the same value as HTMLElement.innerText. [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/outerText) | `HTMLElement.outerText` | node\_modules/typescript/lib/lib.dom.d.ts:13778 |
+| `ownerDocument` | `readonly` | `Document` | The read-only **`ownerDocument`** property of the Node interface returns the top-level document object of the node. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/ownerDocument) | `HTMLElement.ownerDocument` | node\_modules/typescript/lib/lib.dom.d.ts:10785 |
+| `parentElement` | `readonly` | `HTMLElement` \| `null` | The read-only **`parentElement`** property of Node interface returns the DOM node's parent Element, or `null` if the node either has no parent, or its parent isn't a DOM Element. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/parentElement) | `HTMLElement.parentElement` | node\_modules/typescript/lib/lib.dom.d.ts:21724 |
+| `parentNode` | `readonly` | `ParentNode` \| `null` | The read-only **`parentNode`** property of the Node interface returns the parent of the specified node in the DOM tree. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/parentNode) | `HTMLElement.parentNode` | node\_modules/typescript/lib/lib.dom.d.ts:21730 |
+| `popover` | `public` | `string` \| `null` | The **`popover`** property of the HTMLElement interface gets and sets an element's popover state via JavaScript (`'auto'`, `'hint'`, or `'manual'`), and can be used for feature detection. [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/popover) | `HTMLElement.popover` | node\_modules/typescript/lib/lib.dom.d.ts:13784 |
+| `prefix` | `readonly` | `string` \| `null` | The **`Element.prefix`** read-only property returns the namespace prefix of the specified element, or `null` if no prefix is specified. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/prefix) | `HTMLElement.prefix` | node\_modules/typescript/lib/lib.dom.d.ts:10798 |
+| `previousElementSibling` | `readonly` | `Element` \| `null` | Returns the first preceding sibling that is an element, and null otherwise. [MDN Reference](https://developer.mozilla.org/docs/Web/API/CharacterData/previousElementSibling) | `HTMLElement.previousElementSibling` | node\_modules/typescript/lib/lib.dom.d.ts:22009 |
+| `previousSibling` | `readonly` | `ChildNode` \| `null` | The read-only **`previousSibling`** property of the Node interface returns the node immediately preceding the specified one in its parent's or `null` if the specified node is the first in that list. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/previousSibling) | `HTMLElement.previousSibling` | node\_modules/typescript/lib/lib.dom.d.ts:21736 |
+| `PROCESSING_INSTRUCTION_NODE` | `readonly` | `7` | node is a ProcessingInstruction node. | `HTMLElement.PROCESSING_INSTRUCTION_NODE` | node\_modules/typescript/lib/lib.dom.d.ts:21843 |
+| `role` | `public` | `string` \| `null` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/role) | `HTMLElement.role` | node\_modules/typescript/lib/lib.dom.d.ts:2709 |
+| `scrollHeight` | `readonly` | `number` | The **`scrollHeight`** read-only property of the Element interface is a measurement of the height of an element's content, including content not visible on the screen due to overflow. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/scrollHeight) | `HTMLElement.scrollHeight` | node\_modules/typescript/lib/lib.dom.d.ts:10804 |
+| `scrollLeft` | `public` | `number` | The **`scrollLeft`** property of the Element interface gets or sets the number of pixels by which an element's content is scrolled from its left edge. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/scrollLeft) | `HTMLElement.scrollLeft` | node\_modules/typescript/lib/lib.dom.d.ts:10810 |
+| `scrollTop` | `public` | `number` | The **`scrollTop`** property of the Element interface gets or sets the number of pixels by which an element's content is scrolled from its top edge. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/scrollTop) | `HTMLElement.scrollTop` | node\_modules/typescript/lib/lib.dom.d.ts:10816 |
+| `scrollWidth` | `readonly` | `number` | The **`scrollWidth`** read-only property of the Element interface is a measurement of the width of an element's content, including content not visible on the screen due to overflow. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/scrollWidth) | `HTMLElement.scrollWidth` | node\_modules/typescript/lib/lib.dom.d.ts:10822 |
+| `shadowRoot` | `readonly` | `ShadowRoot` \| `null` | The `Element.shadowRoot` read-only property represents the shadow root hosted by the element. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/shadowRoot) | `HTMLElement.shadowRoot` | node\_modules/typescript/lib/lib.dom.d.ts:10828 |
+| `slot` | `public` | `string` | The **`slot`** property of the Element interface returns the name of the shadow DOM slot the element is inserted in. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/slot) | `HTMLElement.slot` | node\_modules/typescript/lib/lib.dom.d.ts:10834 |
+| `spellcheck` | `public` | `boolean` | The **`spellcheck`** property of the HTMLElement interface represents a boolean value that controls the spell-checking hint. [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/spellcheck) | `HTMLElement.spellcheck` | node\_modules/typescript/lib/lib.dom.d.ts:13790 |
+| `tabIndex` | `public` | `number` | [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/tabIndex) | `HTMLElement.tabIndex` | node\_modules/typescript/lib/lib.dom.d.ts:16071 |
+| `tagName` | `readonly` | `string` | The **`tagName`** read-only property of the Element interface returns the tag name of the element on which it's called. [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/tagName) | `HTMLElement.tagName` | node\_modules/typescript/lib/lib.dom.d.ts:10840 |
+| `TEXT_NODE` | `readonly` | `3` | node is a Text node. | `HTMLElement.TEXT_NODE` | node\_modules/typescript/lib/lib.dom.d.ts:21837 |
+| `title` | `public` | `string` | The **`HTMLElement.title`** property represents the title of the element: the text usually displayed in a 'tooltip' popup when the mouse is over the node. [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/title) | `HTMLElement.title` | node\_modules/typescript/lib/lib.dom.d.ts:13796 |
+| `translate` | `public` | `boolean` | The **`translate`** property of the HTMLElement interface indicates whether an element's attribute values and the values of its Text node children are to be translated when the page is localized, or whether to leave them unchanged. [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/translate) | `HTMLElement.translate` | node\_modules/typescript/lib/lib.dom.d.ts:13802 |
+| `writingSuggestions` | `public` | `string` | The **`writingSuggestions`** property of the HTMLElement interface is a string indicating if browser-provided writing suggestions should be enabled under the scope of the element or not. [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/writingSuggestions) | `HTMLElement.writingSuggestions` | node\_modules/typescript/lib/lib.dom.d.ts:13808 |
+
+## Accessors
+
+### classList
+
+#### Get Signature
+
+```ts
+get classList(): DOMTokenList;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10713
+
+The **`Element.classList`** is a read-only property that returns a live DOMTokenList collection of the `class` attributes of the element.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/classList)
+
+##### Returns
+
+`DOMTokenList`
+
+#### Set Signature
+
+```ts
+set classList(value): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10714
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `value` | `string` |
+
+##### Returns
+
+`void`
+
+#### Inherited from
+
+```ts
+HTMLElement.classList
+```
+
+***
+
+### part
+
+#### Get Signature
+
+```ts
+get part(): DOMTokenList;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10791
+
+The **`part`** property of the Element interface represents the part identifier(s) of the element (i.e., set using the `part` attribute), returned as a DOMTokenList.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/part)
+
+##### Returns
+
+`DOMTokenList`
+
+#### Set Signature
+
+```ts
+set part(value): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10792
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `value` | `string` |
+
+##### Returns
+
+`void`
+
+#### Inherited from
+
+```ts
+HTMLElement.part
+```
+
+***
+
+### style
+
+#### Get Signature
+
+```ts
+get style(): CSSStyleDeclaration;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:11119
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/style)
+
+##### Returns
+
+`CSSStyleDeclaration`
+
+#### Set Signature
+
+```ts
+set style(cssText): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:11120
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `cssText` | `string` |
+
+##### Returns
+
+`void`
+
+#### Inherited from
+
+```ts
+HTMLElement.style
+```
+
+***
+
+### textContent
+
+#### Get Signature
+
+```ts
+get textContent(): string;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:11102
+
+[MDN Reference](https://developer.mozilla.org/en-US/docs/Web/API/Node/textContent)
+
+##### Returns
+
+`string`
+
+#### Set Signature
+
+```ts
+set textContent(value): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:11103
+
+The **`textContent`** property of the Node interface represents the text content of the node and its descendants.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/textContent)
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `value` | `string` \| `null` |
+
+##### Returns
+
+`void`
+
+#### Inherited from
+
+```ts
+HTMLElement.textContent
+```
+
+***
+
+### observedAttributes
+
+#### Get Signature
+
+```ts
+get static observedAttributes(): string[];
+```
+
+Defined in: [packages/connect-elements/src/element.ts:90](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-elements/src/element.ts#L90)
+
+##### Returns
+
+`string`[]
+
+## Methods
+
+### addEventListener()
+
+#### Call Signature
+
+```ts
+addEventListener(
+ type,
+ listener,
+ options?): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:13839
+
+##### Type Parameters
+
+| Type Parameter |
+| ------ |
+| `K` *extends* keyof `HTMLElementEventMap` |
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `type` | `K` |
+| `listener` | (`this`, `ev`) => `any` |
+| `options?` | `boolean` \| `AddEventListenerOptions` |
+
+##### Returns
+
+`void`
+
+##### Inherited from
+
+```ts
+HTMLElement.addEventListener
+```
+
+#### Call Signature
+
+```ts
+addEventListener(
+ type,
+ listener,
+ options?): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:13840
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `type` | `string` |
+| `listener` | `EventListenerOrEventListenerObject` |
+| `options?` | `boolean` \| `AddEventListenerOptions` |
+
+##### Returns
+
+`void`
+
+##### Inherited from
+
+```ts
+HTMLElement.addEventListener
+```
+
+***
+
+### after()
+
+```ts
+after(...nodes): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:7953
+
+Inserts nodes just after node, while replacing strings in nodes with equivalent Text nodes.
+
+Throws a "HierarchyRequestError" DOMException if the constraints of the node tree are violated.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/CharacterData/after)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| ...`nodes` | (`string` \| `Node`)[] |
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+```ts
+HTMLElement.after
+```
+
+***
+
+### animate()
+
+```ts
+animate(keyframes, options?): Animation;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:2921
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animate)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `keyframes` | `Keyframe`[] \| `PropertyIndexedKeyframes` \| `null` |
+| `options?` | `number` \| `KeyframeAnimationOptions` |
+
+#### Returns
+
+`Animation`
+
+#### Inherited from
+
+```ts
+HTMLElement.animate
+```
+
+***
+
+### append()
+
+```ts
+append(...nodes): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:22694
+
+Inserts nodes after the last child of node, while replacing strings in nodes with equivalent Text nodes.
+
+Throws a "HierarchyRequestError" DOMException if the constraints of the node tree are violated.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/append)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| ...`nodes` | (`string` \| `Node`)[] |
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+```ts
+HTMLElement.append
+```
+
+***
+
+### appendChild()
+
+```ts
+appendChild(node): T;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:21748
+
+The **`appendChild()`** method of the Node interface adds a node to the end of the list of children of a specified parent node.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/appendChild)
+
+#### Type Parameters
+
+| Type Parameter |
+| ------ |
+| `T` *extends* `Node` |
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `node` | `T` |
+
+#### Returns
+
+`T`
+
+#### Inherited from
+
+```ts
+HTMLElement.appendChild
+```
+
+***
+
+### applyOptions()
+
+```ts
+applyOptions(options): void;
+```
+
+Defined in: [packages/connect-elements/src/element.ts:152](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-elements/src/element.ts#L152)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `options` | [`PactoCheckoutOptions`](#interface.pactocheckoutoptions) |
+
+#### Returns
+
+`void`
+
+***
+
+### attachInternals()
+
+```ts
+attachInternals(): ElementInternals;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:13814
+
+The **`HTMLElement.attachInternals()`** method returns an ElementInternals object.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attachInternals)
+
+#### Returns
+
+`ElementInternals`
+
+#### Inherited from
+
+```ts
+HTMLElement.attachInternals
+```
+
+***
+
+### attachShadow()
+
+```ts
+attachShadow(init): ShadowRoot;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10846
+
+The **`Element.attachShadow()`** method attaches a shadow DOM tree to the specified element and returns a reference to its ShadowRoot.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/attachShadow)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `init` | `ShadowRootInit` |
+
+#### Returns
+
+`ShadowRoot`
+
+#### Inherited from
+
+```ts
+HTMLElement.attachShadow
+```
+
+***
+
+### attributeChangedCallback()
+
+```ts
+attributeChangedCallback(
+ name,
+ oldValue,
+ newValue): void;
+```
+
+Defined in: [packages/connect-elements/src/element.ts:116](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-elements/src/element.ts#L116)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `name` | `string` |
+| `oldValue` | `string` \| `null` |
+| `newValue` | `string` \| `null` |
+
+#### Returns
+
+`void`
+
+***
+
+### before()
+
+```ts
+before(...nodes): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:7961
+
+Inserts nodes just before node, while replacing strings in nodes with equivalent Text nodes.
+
+Throws a "HierarchyRequestError" DOMException if the constraints of the node tree are violated.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/CharacterData/before)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| ...`nodes` | (`string` \| `Node`)[] |
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+```ts
+HTMLElement.before
+```
+
+***
+
+### blur()
+
+```ts
+blur(): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:16073
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/blur)
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+```ts
+HTMLElement.blur
+```
+
+***
+
+### checkVisibility()
+
+```ts
+checkVisibility(options?): boolean;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10852
+
+The **`checkVisibility()`** method of the Element interface checks whether the element is visible.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/checkVisibility)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `options?` | `CheckVisibilityOptions` |
+
+#### Returns
+
+`boolean`
+
+#### Inherited from
+
+```ts
+HTMLElement.checkVisibility
+```
+
+***
+
+### click()
+
+```ts
+click(): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:13820
+
+The **`HTMLElement.click()`** method simulates a mouse click on an element.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/click)
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+```ts
+HTMLElement.click
+```
+
+***
+
+### cloneNode()
+
+```ts
+cloneNode(subtree?): Node;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:21754
+
+The **`cloneNode()`** method of the Node interface returns a duplicate of the node on which this method was called.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/cloneNode)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `subtree?` | `boolean` |
+
+#### Returns
+
+`Node`
+
+#### Inherited from
+
+```ts
+HTMLElement.cloneNode
+```
+
+***
+
+### close()
+
+```ts
+close(): void;
+```
+
+Defined in: [packages/connect-elements/src/element.ts:140](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-elements/src/element.ts#L140)
+
+#### Returns
+
+`void`
+
+***
+
+### closest()
+
+#### Call Signature
+
+```ts
+closest(selector): HTMLElementTagNameMap[K] | null;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10858
+
+The **`closest()`** method of the Element interface traverses the element and its parents (heading toward the document root) until it finds a node that matches the specified CSS selector.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/closest)
+
+##### Type Parameters
+
+| Type Parameter |
+| ------ |
+| `K` *extends* keyof `HTMLElementTagNameMap` |
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `selector` | `K` |
+
+##### Returns
+
+`HTMLElementTagNameMap`\[`K`\] \| `null`
+
+##### Inherited from
+
+```ts
+HTMLElement.closest
+```
+
+#### Call Signature
+
+```ts
+closest(selector): SVGElementTagNameMap[K] | null;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10859
+
+##### Type Parameters
+
+| Type Parameter |
+| ------ |
+| `K` *extends* keyof `SVGElementTagNameMap` |
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `selector` | `K` |
+
+##### Returns
+
+`SVGElementTagNameMap`\[`K`\] \| `null`
+
+##### Inherited from
+
+```ts
+HTMLElement.closest
+```
+
+#### Call Signature
+
+```ts
+closest(selector): MathMLElementTagNameMap[K] | null;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10860
+
+##### Type Parameters
+
+| Type Parameter |
+| ------ |
+| `K` *extends* keyof `MathMLElementTagNameMap` |
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `selector` | `K` |
+
+##### Returns
+
+`MathMLElementTagNameMap`\[`K`\] \| `null`
+
+##### Inherited from
+
+```ts
+HTMLElement.closest
+```
+
+#### Call Signature
+
+```ts
+closest(selectors): E | null;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10861
+
+##### Type Parameters
+
+| Type Parameter | Default type |
+| ------ | ------ |
+| `E` *extends* `Element` | `Element` |
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `selectors` | `string` |
+
+##### Returns
+
+`E` \| `null`
+
+##### Inherited from
+
+```ts
+HTMLElement.closest
+```
+
+***
+
+### compareDocumentPosition()
+
+```ts
+compareDocumentPosition(other): number;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:21760
+
+The **`compareDocumentPosition()`** method of the Node interface reports the position of its argument node relative to the node on which it is called.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/compareDocumentPosition)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `other` | `Node` |
+
+#### Returns
+
+`number`
+
+#### Inherited from
+
+```ts
+HTMLElement.compareDocumentPosition
+```
+
+***
+
+### computedStyleMap()
+
+```ts
+computedStyleMap(): StylePropertyMapReadOnly;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10867
+
+The **`computedStyleMap()`** method of the Element interface returns a StylePropertyMapReadOnly interface which provides a read-only representation of a CSS declaration block that is an alternative to CSSStyleDeclaration.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/computedStyleMap)
+
+#### Returns
+
+`StylePropertyMapReadOnly`
+
+#### Inherited from
+
+```ts
+HTMLElement.computedStyleMap
+```
+
+***
+
+### connectedCallback()
+
+```ts
+connectedCallback(): void;
+```
+
+Defined in: [packages/connect-elements/src/element.ts:106](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-elements/src/element.ts#L106)
+
+#### Returns
+
+`void`
+
+***
+
+### contains()
+
+```ts
+contains(other): boolean;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:21766
+
+The **`contains()`** method of the Node interface returns a boolean value indicating whether a node is a descendant of a given node, that is the node itself, one of its direct children (Node.childNodes), one of the children's direct children, and so on.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/contains)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `other` | `Node` \| `null` |
+
+#### Returns
+
+`boolean`
+
+#### Inherited from
+
+```ts
+HTMLElement.contains
+```
+
+***
+
+### disconnectedCallback()
+
+```ts
+disconnectedCallback(): void;
+```
+
+Defined in: [packages/connect-elements/src/element.ts:112](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-elements/src/element.ts#L112)
+
+#### Returns
+
+`void`
+
+***
+
+### dispatchEvent()
+
+```ts
+dispatchEvent(event): boolean;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:11575
+
+The **`dispatchEvent()`** method of the EventTarget sends an Event to the object, (synchronously) invoking the affected event listeners in the appropriate order.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget/dispatchEvent)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `event` | `Event` |
+
+#### Returns
+
+`boolean`
+
+#### Inherited from
+
+```ts
+HTMLElement.dispatchEvent
+```
+
+***
+
+### focus()
+
+```ts
+focus(options?): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:16075
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/focus)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `options?` | `FocusOptions` |
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+```ts
+HTMLElement.focus
+```
+
+***
+
+### getAnimations()
+
+```ts
+getAnimations(options?): Animation[];
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:2923
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getAnimations)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `options?` | `GetAnimationsOptions` |
+
+#### Returns
+
+`Animation`[]
+
+#### Inherited from
+
+```ts
+HTMLElement.getAnimations
+```
+
+***
+
+### getAttribute()
+
+```ts
+getAttribute(qualifiedName): string | null;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10873
+
+The **`getAttribute()`** method of the element.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getAttribute)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `qualifiedName` | `string` |
+
+#### Returns
+
+`string` \| `null`
+
+#### Inherited from
+
+```ts
+HTMLElement.getAttribute
+```
+
+***
+
+### getAttributeNames()
+
+```ts
+getAttributeNames(): string[];
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10885
+
+The **`getAttributeNames()`** method of the array.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getAttributeNames)
+
+#### Returns
+
+`string`[]
+
+#### Inherited from
+
+```ts
+HTMLElement.getAttributeNames
+```
+
+***
+
+### getAttributeNode()
+
+```ts
+getAttributeNode(qualifiedName): Attr | null;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10891
+
+Returns the specified attribute of the specified element, as an Attr node.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getAttributeNode)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `qualifiedName` | `string` |
+
+#### Returns
+
+`Attr` \| `null`
+
+#### Inherited from
+
+```ts
+HTMLElement.getAttributeNode
+```
+
+***
+
+### getAttributeNodeNS()
+
+```ts
+getAttributeNodeNS(namespace, localName): Attr | null;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10897
+
+The **`getAttributeNodeNS()`** method of the Element interface returns the namespaced Attr node of an element.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getAttributeNodeNS)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `namespace` | `string` \| `null` |
+| `localName` | `string` |
+
+#### Returns
+
+`Attr` \| `null`
+
+#### Inherited from
+
+```ts
+HTMLElement.getAttributeNodeNS
+```
+
+***
+
+### getAttributeNS()
+
+```ts
+getAttributeNS(namespace, localName): string | null;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10879
+
+The **`getAttributeNS()`** method of the Element interface returns the string value of the attribute with the specified namespace and name.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getAttributeNS)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `namespace` | `string` \| `null` |
+| `localName` | `string` |
+
+#### Returns
+
+`string` \| `null`
+
+#### Inherited from
+
+```ts
+HTMLElement.getAttributeNS
+```
+
+***
+
+### getBoundingClientRect()
+
+```ts
+getBoundingClientRect(): DOMRect;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10903
+
+The **`Element.getBoundingClientRect()`** method returns a position relative to the viewport.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getBoundingClientRect)
+
+#### Returns
+
+`DOMRect`
+
+#### Inherited from
+
+```ts
+HTMLElement.getBoundingClientRect
+```
+
+***
+
+### getClientRects()
+
+```ts
+getClientRects(): DOMRectList;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10909
+
+The **`getClientRects()`** method of the Element interface returns a collection of DOMRect objects that indicate the bounding rectangles for each CSS border box in a client.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getClientRects)
+
+#### Returns
+
+`DOMRectList`
+
+#### Inherited from
+
+```ts
+HTMLElement.getClientRects
+```
+
+***
+
+### getElementsByClassName()
+
+```ts
+getElementsByClassName(classNames): HTMLCollectionOf;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10915
+
+The Element method **`getElementsByClassName()`** returns a live specified class name or names.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getElementsByClassName)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `classNames` | `string` |
+
+#### Returns
+
+`HTMLCollectionOf`\<`Element`\>
+
+#### Inherited from
+
+```ts
+HTMLElement.getElementsByClassName
+```
+
+***
+
+### getElementsByTagName()
+
+#### Call Signature
+
+```ts
+getElementsByTagName(qualifiedName): HTMLCollectionOf;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10921
+
+The **`Element.getElementsByTagName()`** method returns a live All descendants of the specified element are searched, but not the element itself.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getElementsByTagName)
+
+##### Type Parameters
+
+| Type Parameter |
+| ------ |
+| `K` *extends* keyof `HTMLElementTagNameMap` |
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `qualifiedName` | `K` |
+
+##### Returns
+
+`HTMLCollectionOf`\<`HTMLElementTagNameMap`\[`K`\]\>
+
+##### Inherited from
+
+```ts
+HTMLElement.getElementsByTagName
+```
+
+#### Call Signature
+
+```ts
+getElementsByTagName(qualifiedName): HTMLCollectionOf;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10922
+
+##### Type Parameters
+
+| Type Parameter |
+| ------ |
+| `K` *extends* keyof `SVGElementTagNameMap` |
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `qualifiedName` | `K` |
+
+##### Returns
+
+`HTMLCollectionOf`\<`SVGElementTagNameMap`\[`K`\]\>
+
+##### Inherited from
+
+```ts
+HTMLElement.getElementsByTagName
+```
+
+#### Call Signature
+
+```ts
+getElementsByTagName(qualifiedName): HTMLCollectionOf;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10923
+
+##### Type Parameters
+
+| Type Parameter |
+| ------ |
+| `K` *extends* keyof `MathMLElementTagNameMap` |
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `qualifiedName` | `K` |
+
+##### Returns
+
+`HTMLCollectionOf`\<`MathMLElementTagNameMap`\[`K`\]\>
+
+##### Inherited from
+
+```ts
+HTMLElement.getElementsByTagName
+```
+
+#### Call Signature
+
+```ts
+getElementsByTagName(qualifiedName): HTMLCollectionOf;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10925
+
+##### Type Parameters
+
+| Type Parameter |
+| ------ |
+| `K` *extends* keyof `HTMLElementDeprecatedTagNameMap` |
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `qualifiedName` | `K` |
+
+##### Returns
+
+`HTMLCollectionOf`\<`HTMLElementDeprecatedTagNameMap`\[`K`\]\>
+
+##### Deprecated
+
+##### Inherited from
+
+```ts
+HTMLElement.getElementsByTagName
+```
+
+#### Call Signature
+
+```ts
+getElementsByTagName(qualifiedName): HTMLCollectionOf;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10926
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `qualifiedName` | `string` |
+
+##### Returns
+
+`HTMLCollectionOf`\<`Element`\>
+
+##### Inherited from
+
+```ts
+HTMLElement.getElementsByTagName
+```
+
+***
+
+### getElementsByTagNameNS()
+
+#### Call Signature
+
+```ts
+getElementsByTagNameNS(namespaceURI, localName): HTMLCollectionOf;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10932
+
+The **`Element.getElementsByTagNameNS()`** method returns a live HTMLCollection of elements with the given tag name belonging to the given namespace.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getElementsByTagNameNS)
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `namespaceURI` | `"http://www.w3.org/1999/xhtml"` |
+| `localName` | `string` |
+
+##### Returns
+
+`HTMLCollectionOf`\<`HTMLElement`\>
+
+##### Inherited from
+
+```ts
+HTMLElement.getElementsByTagNameNS
+```
+
+#### Call Signature
+
+```ts
+getElementsByTagNameNS(namespaceURI, localName): HTMLCollectionOf;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10933
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `namespaceURI` | `"http://www.w3.org/2000/svg"` |
+| `localName` | `string` |
+
+##### Returns
+
+`HTMLCollectionOf`\<`SVGElement`\>
+
+##### Inherited from
+
+```ts
+HTMLElement.getElementsByTagNameNS
+```
+
+#### Call Signature
+
+```ts
+getElementsByTagNameNS(namespaceURI, localName): HTMLCollectionOf;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10934
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `namespaceURI` | `"http://www.w3.org/1998/Math/MathML"` |
+| `localName` | `string` |
+
+##### Returns
+
+`HTMLCollectionOf`\<`MathMLElement`\>
+
+##### Inherited from
+
+```ts
+HTMLElement.getElementsByTagNameNS
+```
+
+#### Call Signature
+
+```ts
+getElementsByTagNameNS(namespace, localName): HTMLCollectionOf;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10935
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `namespace` | `string` \| `null` |
+| `localName` | `string` |
+
+##### Returns
+
+`HTMLCollectionOf`\<`Element`\>
+
+##### Inherited from
+
+```ts
+HTMLElement.getElementsByTagNameNS
+```
+
+***
+
+### getHTML()
+
+```ts
+getHTML(options?): string;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10941
+
+The **`getHTML()`** method of the Element interface is used to serialize an element's DOM to an HTML string.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getHTML)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `options?` | `GetHTMLOptions` |
+
+#### Returns
+
+`string`
+
+#### Inherited from
+
+```ts
+HTMLElement.getHTML
+```
+
+***
+
+### getRootNode()
+
+```ts
+getRootNode(options?): Node;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:21772
+
+The **`getRootNode()`** method of the Node interface returns the context object's root, which optionally includes the shadow root if it is available.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/getRootNode)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `options?` | `GetRootNodeOptions` |
+
+#### Returns
+
+`Node`
+
+#### Inherited from
+
+```ts
+HTMLElement.getRootNode
+```
+
+***
+
+### hasAttribute()
+
+```ts
+hasAttribute(qualifiedName): boolean;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10947
+
+The **`Element.hasAttribute()`** method returns a **Boolean** value indicating whether the specified element has the specified attribute or not.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/hasAttribute)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `qualifiedName` | `string` |
+
+#### Returns
+
+`boolean`
+
+#### Inherited from
+
+```ts
+HTMLElement.hasAttribute
+```
+
+***
+
+### hasAttributeNS()
+
+```ts
+hasAttributeNS(namespace, localName): boolean;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10953
+
+The **`hasAttributeNS()`** method of the Element interface returns a boolean value indicating whether the current element has the specified attribute with the specified namespace.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/hasAttributeNS)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `namespace` | `string` \| `null` |
+| `localName` | `string` |
+
+#### Returns
+
+`boolean`
+
+#### Inherited from
+
+```ts
+HTMLElement.hasAttributeNS
+```
+
+***
+
+### hasAttributes()
+
+```ts
+hasAttributes(): boolean;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10959
+
+The **`hasAttributes()`** method of the Element interface returns a boolean value indicating whether the current element has any attributes or not.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/hasAttributes)
+
+#### Returns
+
+`boolean`
+
+#### Inherited from
+
+```ts
+HTMLElement.hasAttributes
+```
+
+***
+
+### hasChildNodes()
+
+```ts
+hasChildNodes(): boolean;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:21778
+
+The **`hasChildNodes()`** method of the Node interface returns a boolean value indicating whether the given Node has child nodes or not.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/hasChildNodes)
+
+#### Returns
+
+`boolean`
+
+#### Inherited from
+
+```ts
+HTMLElement.hasChildNodes
+```
+
+***
+
+### hasPointerCapture()
+
+```ts
+hasPointerCapture(pointerId): boolean;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10965
+
+The **`hasPointerCapture()`** method of the pointer capture for the pointer identified by the given pointer ID.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/hasPointerCapture)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `pointerId` | `number` |
+
+#### Returns
+
+`boolean`
+
+#### Inherited from
+
+```ts
+HTMLElement.hasPointerCapture
+```
+
+***
+
+### hidePopover()
+
+```ts
+hidePopover(): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:13826
+
+The **`hidePopover()`** method of the HTMLElement interface hides a popover element (i.e., one that has a valid `popover` attribute) by removing it from the top layer and styling it with `display: none`.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/hidePopover)
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+```ts
+HTMLElement.hidePopover
+```
+
+***
+
+### insertAdjacentElement()
+
+```ts
+insertAdjacentElement(where, element): Element | null;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10971
+
+The **`insertAdjacentElement()`** method of the relative to the element it is invoked upon.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/insertAdjacentElement)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `where` | `InsertPosition` |
+| `element` | `Element` |
+
+#### Returns
+
+`Element` \| `null`
+
+#### Inherited from
+
+```ts
+HTMLElement.insertAdjacentElement
+```
+
+***
+
+### insertAdjacentHTML()
+
+```ts
+insertAdjacentHTML(position, string): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10977
+
+The **`insertAdjacentHTML()`** method of the the resulting nodes into the DOM tree at a specified position.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/insertAdjacentHTML)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `position` | `InsertPosition` |
+| `string` | `string` |
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+```ts
+HTMLElement.insertAdjacentHTML
+```
+
+***
+
+### insertAdjacentText()
+
+```ts
+insertAdjacentText(where, data): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10983
+
+The **`insertAdjacentText()`** method of the Element interface, given a relative position and a string, inserts a new text node at the given position relative to the element it is called from.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/insertAdjacentText)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `where` | `InsertPosition` |
+| `data` | `string` |
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+```ts
+HTMLElement.insertAdjacentText
+```
+
+***
+
+### insertBefore()
+
+```ts
+insertBefore(node, child): T;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:21784
+
+The **`insertBefore()`** method of the Node interface inserts a node before a _reference node_ as a child of a specified _parent node_.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/insertBefore)
+
+#### Type Parameters
+
+| Type Parameter |
+| ------ |
+| `T` *extends* `Node` |
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `node` | `T` |
+| `child` | `Node` \| `null` |
+
+#### Returns
+
+`T`
+
+#### Inherited from
+
+```ts
+HTMLElement.insertBefore
+```
+
+***
+
+### isDefaultNamespace()
+
+```ts
+isDefaultNamespace(namespace): boolean;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:21790
+
+The **`isDefaultNamespace()`** method of the Node interface accepts a namespace URI as an argument.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/isDefaultNamespace)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `namespace` | `string` \| `null` |
+
+#### Returns
+
+`boolean`
+
+#### Inherited from
+
+```ts
+HTMLElement.isDefaultNamespace
+```
+
+***
+
+### isEqualNode()
+
+```ts
+isEqualNode(otherNode): boolean;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:21796
+
+The **`isEqualNode()`** method of the Node interface tests whether two nodes are equal.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/isEqualNode)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `otherNode` | `Node` \| `null` |
+
+#### Returns
+
+`boolean`
+
+#### Inherited from
+
+```ts
+HTMLElement.isEqualNode
+```
+
+***
+
+### isSameNode()
+
+```ts
+isSameNode(otherNode): boolean;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:21802
+
+The **`isSameNode()`** method of the Node interface is a legacy alias the for the `===` strict equality operator.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/isSameNode)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `otherNode` | `Node` \| `null` |
+
+#### Returns
+
+`boolean`
+
+#### Inherited from
+
+```ts
+HTMLElement.isSameNode
+```
+
+***
+
+### lookupNamespaceURI()
+
+```ts
+lookupNamespaceURI(prefix): string | null;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:21808
+
+The **`lookupNamespaceURI()`** method of the Node interface takes a prefix as parameter and returns the namespace URI associated with it on the given node if found (and `null` if not).
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/lookupNamespaceURI)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `prefix` | `string` \| `null` |
+
+#### Returns
+
+`string` \| `null`
+
+#### Inherited from
+
+```ts
+HTMLElement.lookupNamespaceURI
+```
+
+***
+
+### lookupPrefix()
+
+```ts
+lookupPrefix(namespace): string | null;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:21814
+
+The **`lookupPrefix()`** method of the Node interface returns a string containing the prefix for a given namespace URI, if present, and `null` if not.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/lookupPrefix)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `namespace` | `string` \| `null` |
+
+#### Returns
+
+`string` \| `null`
+
+#### Inherited from
+
+```ts
+HTMLElement.lookupPrefix
+```
+
+***
+
+### matches()
+
+```ts
+matches(selectors): boolean;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10989
+
+The **`matches()`** method of the Element interface tests whether the element would be selected by the specified CSS selector.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/matches)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `selectors` | `string` |
+
+#### Returns
+
+`boolean`
+
+#### Inherited from
+
+```ts
+HTMLElement.matches
+```
+
+***
+
+### normalize()
+
+```ts
+normalize(): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:21820
+
+The **`normalize()`** method of the Node interface puts the specified node and all of its sub-tree into a _normalized_ form.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/normalize)
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+```ts
+HTMLElement.normalize
+```
+
+***
+
+### open()
+
+```ts
+open(): void;
+```
+
+Defined in: [packages/connect-elements/src/element.ts:130](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-elements/src/element.ts#L130)
+
+#### Returns
+
+`void`
+
+***
+
+### prepend()
+
+```ts
+prepend(...nodes): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:22702
+
+Inserts nodes before the first child of node, while replacing strings in nodes with equivalent Text nodes.
+
+Throws a "HierarchyRequestError" DOMException if the constraints of the node tree are violated.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/prepend)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| ...`nodes` | (`string` \| `Node`)[] |
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+```ts
+HTMLElement.prepend
+```
+
+***
+
+### querySelector()
+
+#### Call Signature
+
+```ts
+querySelector(selectors): HTMLElementTagNameMap[K] | null;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:22708
+
+Returns the first element that is a descendant of node that matches selectors.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/querySelector)
+
+##### Type Parameters
+
+| Type Parameter |
+| ------ |
+| `K` *extends* keyof `HTMLElementTagNameMap` |
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `selectors` | `K` |
+
+##### Returns
+
+`HTMLElementTagNameMap`\[`K`\] \| `null`
+
+##### Inherited from
+
+```ts
+HTMLElement.querySelector
+```
+
+#### Call Signature
+
+```ts
+querySelector(selectors): SVGElementTagNameMap[K] | null;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:22709
+
+##### Type Parameters
+
+| Type Parameter |
+| ------ |
+| `K` *extends* keyof `SVGElementTagNameMap` |
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `selectors` | `K` |
+
+##### Returns
+
+`SVGElementTagNameMap`\[`K`\] \| `null`
+
+##### Inherited from
+
+```ts
+HTMLElement.querySelector
+```
+
+#### Call Signature
+
+```ts
+querySelector(selectors): MathMLElementTagNameMap[K] | null;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:22710
+
+##### Type Parameters
+
+| Type Parameter |
+| ------ |
+| `K` *extends* keyof `MathMLElementTagNameMap` |
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `selectors` | `K` |
+
+##### Returns
+
+`MathMLElementTagNameMap`\[`K`\] \| `null`
+
+##### Inherited from
+
+```ts
+HTMLElement.querySelector
+```
+
+#### Call Signature
+
+```ts
+querySelector(selectors): HTMLElementDeprecatedTagNameMap[K] | null;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:22712
+
+##### Type Parameters
+
+| Type Parameter |
+| ------ |
+| `K` *extends* keyof `HTMLElementDeprecatedTagNameMap` |
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `selectors` | `K` |
+
+##### Returns
+
+`HTMLElementDeprecatedTagNameMap`\[`K`\] \| `null`
+
+##### Deprecated
+
+##### Inherited from
+
+```ts
+HTMLElement.querySelector
+```
+
+#### Call Signature
+
+```ts
+querySelector(selectors): E | null;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:22713
+
+##### Type Parameters
+
+| Type Parameter | Default type |
+| ------ | ------ |
+| `E` *extends* `Element` | `Element` |
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `selectors` | `string` |
+
+##### Returns
+
+`E` \| `null`
+
+##### Inherited from
+
+```ts
+HTMLElement.querySelector
+```
+
+***
+
+### querySelectorAll()
+
+#### Call Signature
+
+```ts
+querySelectorAll(selectors): NodeListOf;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:22719
+
+Returns all element descendants of node that match selectors.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/querySelectorAll)
+
+##### Type Parameters
+
+| Type Parameter |
+| ------ |
+| `K` *extends* keyof `HTMLElementTagNameMap` |
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `selectors` | `K` |
+
+##### Returns
+
+`NodeListOf`\<`HTMLElementTagNameMap`\[`K`\]\>
+
+##### Inherited from
+
+```ts
+HTMLElement.querySelectorAll
+```
+
+#### Call Signature
+
+```ts
+querySelectorAll(selectors): NodeListOf;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:22720
+
+##### Type Parameters
+
+| Type Parameter |
+| ------ |
+| `K` *extends* keyof `SVGElementTagNameMap` |
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `selectors` | `K` |
+
+##### Returns
+
+`NodeListOf`\<`SVGElementTagNameMap`\[`K`\]\>
+
+##### Inherited from
+
+```ts
+HTMLElement.querySelectorAll
+```
+
+#### Call Signature
+
+```ts
+querySelectorAll(selectors): NodeListOf;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:22721
+
+##### Type Parameters
+
+| Type Parameter |
+| ------ |
+| `K` *extends* keyof `MathMLElementTagNameMap` |
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `selectors` | `K` |
+
+##### Returns
+
+`NodeListOf`\<`MathMLElementTagNameMap`\[`K`\]\>
+
+##### Inherited from
+
+```ts
+HTMLElement.querySelectorAll
+```
+
+#### Call Signature
+
+```ts
+querySelectorAll(selectors): NodeListOf;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:22723
+
+##### Type Parameters
+
+| Type Parameter |
+| ------ |
+| `K` *extends* keyof `HTMLElementDeprecatedTagNameMap` |
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `selectors` | `K` |
+
+##### Returns
+
+`NodeListOf`\<`HTMLElementDeprecatedTagNameMap`\[`K`\]\>
+
+##### Deprecated
+
+##### Inherited from
+
+```ts
+HTMLElement.querySelectorAll
+```
+
+#### Call Signature
+
+```ts
+querySelectorAll(selectors): NodeListOf;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:22724
+
+##### Type Parameters
+
+| Type Parameter | Default type |
+| ------ | ------ |
+| `E` *extends* `Element` | `Element` |
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `selectors` | `string` |
+
+##### Returns
+
+`NodeListOf`\<`E`\>
+
+##### Inherited from
+
+```ts
+HTMLElement.querySelectorAll
+```
+
+***
+
+### readOptionsFromAttributes()
+
+```ts
+readOptionsFromAttributes(): PactoCheckoutOptions;
+```
+
+Defined in: [packages/connect-elements/src/element.ts:160](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-elements/src/element.ts#L160)
+
+#### Returns
+
+[`PactoCheckoutOptions`](#interface.pactocheckoutoptions)
+
+***
+
+### releasePointerCapture()
+
+```ts
+releasePointerCapture(pointerId): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:10995
+
+The **`releasePointerCapture()`** method of the previously set for a specific (PointerEvent) _pointer_.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/releasePointerCapture)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `pointerId` | `number` |
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+```ts
+HTMLElement.releasePointerCapture
+```
+
+***
+
+### remove()
+
+```ts
+remove(): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:7967
+
+Removes node.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/CharacterData/remove)
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+```ts
+HTMLElement.remove
+```
+
+***
+
+### removeAttribute()
+
+```ts
+removeAttribute(qualifiedName): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:11001
+
+The Element method **`removeAttribute()`** removes the attribute with the specified name from the element.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/removeAttribute)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `qualifiedName` | `string` |
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+```ts
+HTMLElement.removeAttribute
+```
+
+***
+
+### removeAttributeNode()
+
+```ts
+removeAttributeNode(attr): Attr;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:11013
+
+The **`removeAttributeNode()`** method of the Element interface removes the specified Attr node from the element.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/removeAttributeNode)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `attr` | `Attr` |
+
+#### Returns
+
+`Attr`
+
+#### Inherited from
+
+```ts
+HTMLElement.removeAttributeNode
+```
+
+***
+
+### removeAttributeNS()
+
+```ts
+removeAttributeNS(namespace, localName): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:11007
+
+The **`removeAttributeNS()`** method of the If you are working with HTML and you don't need to specify the requested attribute as being part of a specific namespace, use the Element.removeAttribute() method instead.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/removeAttributeNS)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `namespace` | `string` \| `null` |
+| `localName` | `string` |
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+```ts
+HTMLElement.removeAttributeNS
+```
+
+***
+
+### removeChild()
+
+```ts
+removeChild(child): T;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:21826
+
+The **`removeChild()`** method of the Node interface removes a child node from the DOM and returns the removed node.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/removeChild)
+
+#### Type Parameters
+
+| Type Parameter |
+| ------ |
+| `T` *extends* `Node` |
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `child` | `T` |
+
+#### Returns
+
+`T`
+
+#### Inherited from
+
+```ts
+HTMLElement.removeChild
+```
+
+***
+
+### removeEventListener()
+
+#### Call Signature
+
+```ts
+removeEventListener(
+ type,
+ listener,
+ options?): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:13841
+
+##### Type Parameters
+
+| Type Parameter |
+| ------ |
+| `K` *extends* keyof `HTMLElementEventMap` |
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `type` | `K` |
+| `listener` | (`this`, `ev`) => `any` |
+| `options?` | `boolean` \| `EventListenerOptions` |
+
+##### Returns
+
+`void`
+
+##### Inherited from
+
+```ts
+HTMLElement.removeEventListener
+```
+
+#### Call Signature
+
+```ts
+removeEventListener(
+ type,
+ listener,
+ options?): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:13842
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `type` | `string` |
+| `listener` | `EventListenerOrEventListenerObject` |
+| `options?` | `boolean` \| `EventListenerOptions` |
+
+##### Returns
+
+`void`
+
+##### Inherited from
+
+```ts
+HTMLElement.removeEventListener
+```
+
+***
+
+### replaceChild()
+
+```ts
+replaceChild(node, child): T;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:21832
+
+The **`replaceChild()`** method of the Node interface replaces a child node within the given (parent) node.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/replaceChild)
+
+#### Type Parameters
+
+| Type Parameter |
+| ------ |
+| `T` *extends* `Node` |
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `node` | `Node` |
+| `child` | `T` |
+
+#### Returns
+
+`T`
+
+#### Inherited from
+
+```ts
+HTMLElement.replaceChild
+```
+
+***
+
+### replaceChildren()
+
+```ts
+replaceChildren(...nodes): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:22732
+
+Replace all children of node with nodes, while replacing strings in nodes with equivalent Text nodes.
+
+Throws a "HierarchyRequestError" DOMException if the constraints of the node tree are violated.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/replaceChildren)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| ...`nodes` | (`string` \| `Node`)[] |
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+```ts
+HTMLElement.replaceChildren
+```
+
+***
+
+### replaceWith()
+
+```ts
+replaceWith(...nodes): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:7975
+
+Replaces node with nodes, while replacing strings in nodes with equivalent Text nodes.
+
+Throws a "HierarchyRequestError" DOMException if the constraints of the node tree are violated.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/CharacterData/replaceWith)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| ...`nodes` | (`string` \| `Node`)[] |
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+```ts
+HTMLElement.replaceWith
+```
+
+***
+
+### requestFullscreen()
+
+```ts
+requestFullscreen(options?): Promise;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:11019
+
+The **`Element.requestFullscreen()`** method issues an asynchronous request to make the element be displayed in fullscreen mode.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/requestFullscreen)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `options?` | `FullscreenOptions` |
+
+#### Returns
+
+`Promise`\<`void`\>
+
+#### Inherited from
+
+```ts
+HTMLElement.requestFullscreen
+```
+
+***
+
+### requestPointerLock()
+
+```ts
+requestPointerLock(options?): Promise;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:11025
+
+The **`requestPointerLock()`** method of the Element interface lets you asynchronously ask for the pointer to be locked on the given element.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/requestPointerLock)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `options?` | `PointerLockOptions` |
+
+#### Returns
+
+`Promise`\<`void`\>
+
+#### Inherited from
+
+```ts
+HTMLElement.requestPointerLock
+```
+
+***
+
+### scroll()
+
+#### Call Signature
+
+```ts
+scroll(options?): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:11031
+
+The **`scroll()`** method of the Element interface scrolls the element to a particular set of coordinates inside a given element.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/scroll)
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `options?` | `ScrollToOptions` |
+
+##### Returns
+
+`void`
+
+##### Inherited from
+
+```ts
+HTMLElement.scroll
+```
+
+#### Call Signature
+
+```ts
+scroll(x, y): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:11032
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `x` | `number` |
+| `y` | `number` |
+
+##### Returns
+
+`void`
+
+##### Inherited from
+
+```ts
+HTMLElement.scroll
+```
+
+***
+
+### scrollBy()
+
+#### Call Signature
+
+```ts
+scrollBy(options?): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:11038
+
+The **`scrollBy()`** method of the Element interface scrolls an element by the given amount.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/scrollBy)
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `options?` | `ScrollToOptions` |
+
+##### Returns
+
+`void`
+
+##### Inherited from
+
+```ts
+HTMLElement.scrollBy
+```
+
+#### Call Signature
+
+```ts
+scrollBy(x, y): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:11039
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `x` | `number` |
+| `y` | `number` |
+
+##### Returns
+
+`void`
+
+##### Inherited from
+
+```ts
+HTMLElement.scrollBy
+```
+
+***
+
+### scrollIntoView()
+
+```ts
+scrollIntoView(arg?): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:11045
+
+The Element interface's **`scrollIntoView()`** method scrolls the element's ancestor containers such that the element on which `scrollIntoView()` is called is visible to the user.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/scrollIntoView)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `arg?` | `boolean` \| `ScrollIntoViewOptions` |
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+```ts
+HTMLElement.scrollIntoView
+```
+
+***
+
+### scrollTo()
+
+#### Call Signature
+
+```ts
+scrollTo(options?): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:11051
+
+The **`scrollTo()`** method of the Element interface scrolls to a particular set of coordinates inside a given element.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/scrollTo)
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `options?` | `ScrollToOptions` |
+
+##### Returns
+
+`void`
+
+##### Inherited from
+
+```ts
+HTMLElement.scrollTo
+```
+
+#### Call Signature
+
+```ts
+scrollTo(x, y): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:11052
+
+##### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `x` | `number` |
+| `y` | `number` |
+
+##### Returns
+
+`void`
+
+##### Inherited from
+
+```ts
+HTMLElement.scrollTo
+```
+
+***
+
+### setAttribute()
+
+```ts
+setAttribute(qualifiedName, value): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:11058
+
+The **`setAttribute()`** method of the Element interface sets the value of an attribute on the specified element.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttribute)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `qualifiedName` | `string` |
+| `value` | `string` |
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+```ts
+HTMLElement.setAttribute
+```
+
+***
+
+### setAttributeNode()
+
+```ts
+setAttributeNode(attr): Attr | null;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:11070
+
+The **`setAttributeNode()`** method of the Element interface adds a new Attr node to the specified element.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttributeNode)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `attr` | `Attr` |
+
+#### Returns
+
+`Attr` \| `null`
+
+#### Inherited from
+
+```ts
+HTMLElement.setAttributeNode
+```
+
+***
+
+### setAttributeNodeNS()
+
+```ts
+setAttributeNodeNS(attr): Attr | null;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:11076
+
+The **`setAttributeNodeNS()`** method of the Element interface adds a new namespaced Attr node to an element.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttributeNodeNS)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `attr` | `Attr` |
+
+#### Returns
+
+`Attr` \| `null`
+
+#### Inherited from
+
+```ts
+HTMLElement.setAttributeNodeNS
+```
+
+***
+
+### setAttributeNS()
+
+```ts
+setAttributeNS(
+ namespace,
+ qualifiedName,
+ value): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:11064
+
+`setAttributeNS` adds a new attribute or changes the value of an attribute with the given namespace and name.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttributeNS)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `namespace` | `string` \| `null` |
+| `qualifiedName` | `string` |
+| `value` | `string` |
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+```ts
+HTMLElement.setAttributeNS
+```
+
+***
+
+### setHTMLUnsafe()
+
+```ts
+setHTMLUnsafe(html): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:11082
+
+The **`setHTMLUnsafe()`** method of the Element interface is used to parse a string of HTML into a DocumentFragment, optionally filtering out unwanted elements and attributes, and those that don't belong in the context, and then using it to replace the element's subtree in the DOM.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setHTMLUnsafe)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `html` | `string` |
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+```ts
+HTMLElement.setHTMLUnsafe
+```
+
+***
+
+### setPointerCapture()
+
+```ts
+setPointerCapture(pointerId): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:11088
+
+The **`setPointerCapture()`** method of the _capture target_ of future pointer events.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setPointerCapture)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `pointerId` | `number` |
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+```ts
+HTMLElement.setPointerCapture
+```
+
+***
+
+### showPopover()
+
+```ts
+showPopover(): void;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:13832
+
+The **`showPopover()`** method of the HTMLElement interface shows a Popover_API element (i.e., one that has a valid `popover` attribute) by adding it to the top layer.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/showPopover)
+
+#### Returns
+
+`void`
+
+#### Inherited from
+
+```ts
+HTMLElement.showPopover
+```
+
+***
+
+### toggleAttribute()
+
+```ts
+toggleAttribute(qualifiedName, force?): boolean;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:11094
+
+The **`toggleAttribute()`** method of the present and adding it if it is not present) on the given element.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/toggleAttribute)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `qualifiedName` | `string` |
+| `force?` | `boolean` |
+
+#### Returns
+
+`boolean`
+
+#### Inherited from
+
+```ts
+HTMLElement.toggleAttribute
+```
+
+***
+
+### togglePopover()
+
+```ts
+togglePopover(options?): boolean;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:13838
+
+The **`togglePopover()`** method of the HTMLElement interface toggles a Popover_API element (i.e., one that has a valid `popover` attribute) between the hidden and showing states.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/togglePopover)
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `options?` | `boolean` |
+
+#### Returns
+
+`boolean`
+
+#### Inherited from
+
+```ts
+HTMLElement.togglePopover
+```
+
+***
+
+### ~~webkitMatchesSelector()~~
+
+```ts
+webkitMatchesSelector(selectors): boolean;
+```
+
+Defined in: node\_modules/typescript/lib/lib.dom.d.ts:11100
+
+#### Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `selectors` | `string` |
+
+#### Returns
+
+`boolean`
+
+#### Deprecated
+
+This is a legacy alias of `matches`.
+
+[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/matches)
+
+#### Inherited from
+
+```ts
+HTMLElement.webkitMatchesSelector
+```
+
+
+---
+
+# Function: applyCheckoutOptions()
+
+```ts
+function applyCheckoutOptions(element, options): void;
+```
+
+Defined in: [packages/connect-elements/src/element.ts:263](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-elements/src/element.ts#L263)
+
+## Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `element` | [`PactoCheckoutElement`](#class.pactocheckoutelement) |
+| `options` | [`PactoCheckoutOptions`](#interface.pactocheckoutoptions) |
+
+## Returns
+
+`void`
+
+
+---
+
+# Function: bootstrapCheckoutFrame()
+
+```ts
+function bootstrapCheckoutFrame(options?): FramePageHandle;
+```
+
+Defined in: [packages/connect-elements/src/frame-page.ts:49](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-elements/src/frame-page.ts#L49)
+
+## Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `options` | [`BootstrapCheckoutFrameOptions`](#interface.bootstrapcheckoutframeoptions) |
+
+## Returns
+
+[`FramePageHandle`](#interface.framepagehandle)
+
+
+---
+
+# Function: createFocusTrap()
+
+```ts
+function createFocusTrap(container, onEscape?): FocusTrap;
+```
+
+Defined in: [packages/connect-elements/src/focus-trap.ts:30](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-elements/src/focus-trap.ts#L30)
+
+Activates a focus trap on `container`. The container is re-queried on every
+keydown so the trap keeps working across re-renders that swap its children.
+
+## Parameters
+
+| Parameter | Type |
+| ------ | ------ |
+| `container` | `HTMLElement` |
+| `onEscape?` | () => `void` |
+
+## Returns
+
+[`FocusTrap`](#interface.focustrap)
+
+
+---
+
+# Function: injectCheckoutStyles()
+
+```ts
+function injectCheckoutStyles(doc?): HTMLStyleElement | null;
+```
+
+Defined in: [packages/connect-elements/src/styles.ts:109](https://github.com/KevinLatino/pacto-connect/blob/31f80df988950d6a4d6d919aaebcf39d4d3c5b75/packages/connect-elements/src/styles.ts#L109)
+
+Injects the default checkout stylesheet into `document.head` once. Returns
+the `