## @strpc 기존 RPC를 package화 ### @strpc/express express의 middleware + router 결함 ## @sammo 게임 전체 - server, client - gateway_server, gateway_client
23 lines
384 B
TypeScript
23 lines
384 B
TypeScript
export type {
|
|
HttpMethod,
|
|
RawArgType,
|
|
DefAPINamespace,
|
|
APICompatType,
|
|
ValidResponse,
|
|
InvalidResponse,
|
|
recoveryMethod,
|
|
InferResponse,
|
|
InferError,
|
|
InferQuery,
|
|
} from './types.js';
|
|
|
|
export {
|
|
type APITail,
|
|
GET,
|
|
POST,
|
|
PUT,
|
|
DELETE,
|
|
PATCH,
|
|
HEAD,
|
|
} from './tail.js';
|
|
export { clientAPIPathGen } from './clientAPIPathGen.js'; |