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
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?