mirror of
https://github.com/bitechdev/ResolveSpec.git
synced 2026-04-10 09:56:24 +00:00
- Introduced ResolveSpecClient for REST API interactions. - Added WebSocketClient for real-time communication. - Created types and utility functions for both clients. - Removed deprecated types and example files. - Configured TypeScript and Vite for building the library.
12 lines
209 B
TypeScript
12 lines
209 B
TypeScript
// Common types
|
|
export * from './common';
|
|
|
|
// REST client (ResolveSpec)
|
|
export * from './resolvespec';
|
|
|
|
// WebSocket client
|
|
export * from './websocketspec';
|
|
|
|
// HeaderSpec client
|
|
export * from './headerspec';
|