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

Client SDK

앱인토스 웹 미니앱에서 사용하는 공개 API 표면이에요. 디렉터리 구조가 곧 이 레퍼런스의 목차이고, export되는 API는 전부 같은 depth의 REFERENCE.md로 문서화돼요.

구성

영역
설명

domains/

도메인.동작 인터페이스 20종 + 각 멤버의 함수형(flat) API

events/

네이티브 이벤트 구독 버스 (graniteEvent · tdsEvent · appsInTossEvent)

사용 방식

// 도메인 인터페이스
import { Device } from "@apps-in-toss/web-framework";
await Device.openCamera();

// 함수형(flat) API — v2와 동일
import { openCamera } from "@apps-in-toss/web-framework";
await openCamera();

도움이 되었나요?