For the complete documentation index, see llms.txt. This page is also available as Markdown.

Client SDK

This is the public API surface used in Apps in Toss web mini apps. The directory structure is effectively the table of contents for this reference, and all exported APIs are documented in REFERENCE.md at the same depth.

Structure

Scope
Description

domains/

domain.action 20 interface types + function-style (flat) API for each member

events/

Native event subscription bus (graniteEvent · tdsEvent · appsInTossEvent)

Usage

// Domain interface
import { Device } from "@apps-in-toss/web-framework";
await Device.openCamera();

// Function-style (flat) API — same as v2
import { openCamera } from "@apps-in-toss/web-framework";
await openCamera();

Was this helpful?