@uniai-fe/util-api
v0.1.9
Published
API contract types and framework-agnostic utilities for UNIAI FE projects
Readme
@uniai-fe/util-api
API contract types and request/runtime helpers for framework-agnostic integration.
Scope
- API response 공통 타입
- API request/runtime helper
- framework 비종속(React/Next 의존성 없음)
Install
pnpm add @uniai-fe/util-apiUsage
import type { API_Res_Base } from "@uniai-fe/util-api";
type API_Res_User = API_Res_Base<{ user_id: number } | null>;