elsium-ai 0.2.2 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +73 -42
- package/dist/index.d.ts +14 -12
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1864 -333
- package/package.json +12 -11
package/README.md
CHANGED
|
@@ -49,28 +49,35 @@ Every value and type listed below is available directly from `'elsium-ai'`.
|
|
|
49
49
|
| `ok` | `ContentPart` |
|
|
50
50
|
| `err` | `TextContent` |
|
|
51
51
|
| `isOk` | `ImageContent` |
|
|
52
|
-
| `isErr` | `
|
|
53
|
-
| `unwrap` | `
|
|
54
|
-
| `unwrapOr` | `
|
|
55
|
-
| `tryCatch` | `
|
|
56
|
-
| `tryCatchSync` | `
|
|
57
|
-
| `createStream` | `
|
|
58
|
-
| `createLogger` | `
|
|
59
|
-
| `env` | `
|
|
60
|
-
| `envNumber` | `
|
|
61
|
-
| `envBool` | `
|
|
62
|
-
| `generateId` | `
|
|
63
|
-
| `generateTraceId` | `
|
|
64
|
-
| `extractText` | `
|
|
65
|
-
| `sleep` | `
|
|
66
|
-
| `retry` | `
|
|
67
|
-
| | `
|
|
52
|
+
| `isErr` | `AudioContent` |
|
|
53
|
+
| `unwrap` | `DocumentContent` |
|
|
54
|
+
| `unwrapOr` | `Message` |
|
|
55
|
+
| `tryCatch` | `ToolCall` |
|
|
56
|
+
| `tryCatchSync` | `ToolResult` |
|
|
57
|
+
| `createStream` | `TokenUsage` |
|
|
58
|
+
| `createLogger` | `CostBreakdown` |
|
|
59
|
+
| `env` | `StopReason` |
|
|
60
|
+
| `envNumber` | `LLMResponse` |
|
|
61
|
+
| `envBool` | `StreamEvent` |
|
|
62
|
+
| `generateId` | `XRayData` |
|
|
63
|
+
| `generateTraceId` | `StreamCheckpoint` |
|
|
64
|
+
| `extractText` | `ProviderConfig` |
|
|
65
|
+
| `sleep` | `CompletionRequest` |
|
|
66
|
+
| `retry` | `ToolDefinition` |
|
|
67
|
+
| `zodToJsonSchema` | `TenantContext` |
|
|
68
|
+
| `createRegistry` | `Middleware` |
|
|
69
|
+
| `countTokens` | `Result` |
|
|
70
|
+
| `createContextManager` | `Ok` |
|
|
68
71
|
| | `Err` |
|
|
69
72
|
| | `ElsiumStream` |
|
|
70
73
|
| | `ResilientStreamOptions` |
|
|
71
74
|
| | `LogLevel` |
|
|
72
75
|
| | `Logger` |
|
|
73
76
|
| | `ErrorCode` |
|
|
77
|
+
| | `Registry` |
|
|
78
|
+
| | `ContextStrategy` |
|
|
79
|
+
| | `ContextManagerConfig` |
|
|
80
|
+
| | `ContextManager` |
|
|
74
81
|
|
|
75
82
|
### `@elsium-ai/gateway`
|
|
76
83
|
|
|
@@ -88,11 +95,15 @@ Every value and type listed below is available directly from `'elsium-ai'`.
|
|
|
88
95
|
| `createOpenAIProvider` | `SecurityMiddlewareConfig` |
|
|
89
96
|
| `createGoogleProvider` | `SecurityViolation` |
|
|
90
97
|
| `createProviderMesh` | `SecurityResult` |
|
|
91
|
-
| `securityMiddleware` | |
|
|
92
|
-
| `detectPromptInjection` | |
|
|
93
|
-
| `detectJailbreak` | |
|
|
94
|
-
| `redactSecrets` | |
|
|
95
|
-
| `checkBlockedPatterns` | |
|
|
98
|
+
| `securityMiddleware` | `CacheAdapter` |
|
|
99
|
+
| `detectPromptInjection` | `CacheStats` |
|
|
100
|
+
| `detectJailbreak` | `CacheMiddlewareConfig` |
|
|
101
|
+
| `redactSecrets` | `OutputGuardrailConfig` |
|
|
102
|
+
| `checkBlockedPatterns` | `OutputGuardrailRule` |
|
|
103
|
+
| `cacheMiddleware` | `OutputViolation` |
|
|
104
|
+
| `createInMemoryCache` | `BatchConfig` |
|
|
105
|
+
| `outputGuardrailMiddleware` | `BatchResult` |
|
|
106
|
+
| `createBatch` | `BatchResultItem` |
|
|
96
107
|
|
|
97
108
|
### `@elsium-ai/agents`
|
|
98
109
|
|
|
@@ -107,6 +118,8 @@ Every value and type listed below is available directly from `'elsium-ai'`.
|
|
|
107
118
|
| `createAgentSecurity` | `AgentHooks` |
|
|
108
119
|
| `createConfidenceScorer` | `Memory` |
|
|
109
120
|
| `executeStateMachine` | `MemoryConfig` |
|
|
121
|
+
| `createInMemoryMemoryStore` | `MemoryStore` |
|
|
122
|
+
| `createSqliteMemoryStore` | `SqliteMemoryStoreConfig` |
|
|
110
123
|
| | `SemanticGuardrailConfig` |
|
|
111
124
|
| | `SemanticCheck` |
|
|
112
125
|
| | `SemanticCheckResult` |
|
|
@@ -141,12 +154,15 @@ Every value and type listed below is available directly from `'elsium-ai'`.
|
|
|
141
154
|
| `createInMemoryStore` | `RAGPipelineConfig` |
|
|
142
155
|
| `createOpenAIEmbeddings` | `IngestResult` |
|
|
143
156
|
| `createMockEmbeddings` | `Document` |
|
|
144
|
-
| | `Chunk` |
|
|
145
|
-
| | `EmbeddedChunk` |
|
|
146
|
-
| | `RetrievalResult` |
|
|
157
|
+
| `vectorStoreRegistry` | `Chunk` |
|
|
158
|
+
| `embeddingProviderRegistry` | `EmbeddedChunk` |
|
|
159
|
+
| `createPgVectorStore` | `RetrievalResult` |
|
|
147
160
|
| | `QueryOptions` |
|
|
148
161
|
| | `EmbeddingProvider` |
|
|
149
162
|
| | `VectorStore` |
|
|
163
|
+
| | `VectorStoreFactory` |
|
|
164
|
+
| | `EmbeddingProviderFactory` |
|
|
165
|
+
| | `PgVectorStoreConfig` |
|
|
150
166
|
|
|
151
167
|
### `@elsium-ai/workflows`
|
|
152
168
|
|
|
@@ -168,18 +184,22 @@ Every value and type listed below is available directly from `'elsium-ai'`.
|
|
|
168
184
|
| `createSpan` | `TracerConfig` |
|
|
169
185
|
| `createMetrics` | `TracerExporter` |
|
|
170
186
|
| `createCostEngine` | `CostReport` |
|
|
171
|
-
| `
|
|
172
|
-
| `
|
|
173
|
-
| `
|
|
174
|
-
| `
|
|
175
|
-
| `
|
|
176
|
-
| `
|
|
177
|
-
| `
|
|
178
|
-
| | `CostEngineConfig` |
|
|
187
|
+
| `createExperiment` | `Span` |
|
|
188
|
+
| `toOTelSpan` | `SpanData` |
|
|
189
|
+
| `toOTelExportRequest` | `SpanKind` |
|
|
190
|
+
| `toTraceparent` | `SpanStatus` |
|
|
191
|
+
| `parseTraceparent` | `MetricsCollector` |
|
|
192
|
+
| `injectTraceContext` | `MetricEntry` |
|
|
193
|
+
| `extractTraceContext` | `CostEngine` |
|
|
194
|
+
| `createOTLPExporter` | `CostEngineConfig` |
|
|
179
195
|
| | `CostAlert` |
|
|
180
196
|
| | `CostDimension` |
|
|
181
197
|
| | `CostIntelligenceReport` |
|
|
182
198
|
| | `ModelSuggestion` |
|
|
199
|
+
| | `Experiment` |
|
|
200
|
+
| | `ExperimentConfig` |
|
|
201
|
+
| | `ExperimentVariant` |
|
|
202
|
+
| | `ExperimentResults` |
|
|
183
203
|
| | `OTelSpan` |
|
|
184
204
|
| | `OTelExportRequest` |
|
|
185
205
|
| | `TraceContext` |
|
|
@@ -190,10 +210,13 @@ Every value and type listed below is available directly from `'elsium-ai'`.
|
|
|
190
210
|
| Values | Types |
|
|
191
211
|
|--------|-------|
|
|
192
212
|
| `createApp` | `AppConfig` |
|
|
193
|
-
| | `ServerConfig` |
|
|
194
|
-
| | `CorsConfig` |
|
|
195
|
-
| | `AuthConfig` |
|
|
196
|
-
| | `RateLimitConfig` |
|
|
213
|
+
| `sseHeaders` | `ServerConfig` |
|
|
214
|
+
| `formatSSE` | `CorsConfig` |
|
|
215
|
+
| `streamResponse` | `AuthConfig` |
|
|
216
|
+
| `tenantMiddleware` | `RateLimitConfig` |
|
|
217
|
+
| `tenantRateLimitMiddleware` | `StreamChatEvent` |
|
|
218
|
+
| | `StreamCompleteEvent` |
|
|
219
|
+
| | `TenantMiddlewareConfig` |
|
|
197
220
|
|
|
198
221
|
### `@elsium-ai/mcp`
|
|
199
222
|
|
|
@@ -205,6 +228,13 @@ Every value and type listed below is available directly from `'elsium-ai'`.
|
|
|
205
228
|
| | `MCPServer` |
|
|
206
229
|
| | `MCPServerConfig` |
|
|
207
230
|
|
|
231
|
+
### `@elsium-ai/client`
|
|
232
|
+
|
|
233
|
+
| Values | Types |
|
|
234
|
+
|--------|-------|
|
|
235
|
+
| `createClient` | `ElsiumClient` |
|
|
236
|
+
| | `ClientConfig` |
|
|
237
|
+
|
|
208
238
|
### `@elsium-ai/testing`
|
|
209
239
|
|
|
210
240
|
| Values | Types |
|
|
@@ -287,14 +317,15 @@ For full API documentation, see each sub-package README.
|
|
|
287
317
|
|
|
288
318
|
| Package | npm | Description |
|
|
289
319
|
|---------|-----|-------------|
|
|
290
|
-
| `@elsium-ai/core` | [npm](https://www.npmjs.com/package/@elsium-ai/core) | Types, errors, result pattern, streaming, logger, config
|
|
291
|
-
| `@elsium-ai/gateway` | [npm](https://www.npmjs.com/package/@elsium-ai/gateway) | Multi-provider LLM gateway, middleware, provider mesh, security |
|
|
292
|
-
| `@elsium-ai/agents` | [npm](https://www.npmjs.com/package/@elsium-ai/agents) | Agent definitions, memory, guardrails, multi-agent
|
|
320
|
+
| `@elsium-ai/core` | [npm](https://www.npmjs.com/package/@elsium-ai/core) | Types, errors, result pattern, streaming, logger, config, tokens, context manager, registry, schema |
|
|
321
|
+
| `@elsium-ai/gateway` | [npm](https://www.npmjs.com/package/@elsium-ai/gateway) | Multi-provider LLM gateway, middleware, provider mesh, security, caching, output guardrails, batch |
|
|
322
|
+
| `@elsium-ai/agents` | [npm](https://www.npmjs.com/package/@elsium-ai/agents) | Agent definitions, memory, persistent stores (in-memory, SQLite), guardrails, multi-agent |
|
|
293
323
|
| `@elsium-ai/tools` | [npm](https://www.npmjs.com/package/@elsium-ai/tools) | Tool definitions with Zod validation, built-in tools |
|
|
294
|
-
| `@elsium-ai/rag` | [npm](https://www.npmjs.com/package/@elsium-ai/rag) | Document ingestion, chunking, embeddings, vector search |
|
|
324
|
+
| `@elsium-ai/rag` | [npm](https://www.npmjs.com/package/@elsium-ai/rag) | Document ingestion, chunking, embeddings, vector search, PgVector store, plugin registries |
|
|
295
325
|
| `@elsium-ai/workflows` | [npm](https://www.npmjs.com/package/@elsium-ai/workflows) | Sequential, parallel, and branching workflow definitions |
|
|
296
|
-
| `@elsium-ai/observe` | [npm](https://www.npmjs.com/package/@elsium-ai/observe) | Tracing, metrics, cost intelligence, OpenTelemetry export |
|
|
297
|
-
| `@elsium-ai/app` | [npm](https://www.npmjs.com/package/@elsium-ai/app) | HTTP server with CORS, auth,
|
|
326
|
+
| `@elsium-ai/observe` | [npm](https://www.npmjs.com/package/@elsium-ai/observe) | Tracing, metrics, cost intelligence, OpenTelemetry export, A/B experiments |
|
|
327
|
+
| `@elsium-ai/app` | [npm](https://www.npmjs.com/package/@elsium-ai/app) | HTTP server with CORS, auth, rate limiting, SSE streaming, multi-tenant |
|
|
328
|
+
| `@elsium-ai/client` | [npm](https://www.npmjs.com/package/@elsium-ai/client) | TypeScript HTTP client with SSE parsing for consuming ElsiumAI servers |
|
|
298
329
|
| `@elsium-ai/mcp` | [npm](https://www.npmjs.com/package/@elsium-ai/mcp) | Model Context Protocol client and server |
|
|
299
330
|
| `@elsium-ai/testing` | [npm](https://www.npmjs.com/package/@elsium-ai/testing) | Mocks, fixtures, evals, snapshot testing, prompt versioning, replay |
|
|
300
331
|
|
package/dist/index.d.ts
CHANGED
|
@@ -9,24 +9,26 @@
|
|
|
9
9
|
* You can import everything from one place:
|
|
10
10
|
* import { env, gateway, defineAgent } from 'elsium-ai'
|
|
11
11
|
*/
|
|
12
|
-
export { ElsiumError, ok, err, isOk, isErr, unwrap, unwrapOr, tryCatch, tryCatchSync, createStream, createLogger, env, envNumber, envBool, generateId, generateTraceId, extractText, sleep, retry, } from '@elsium-ai/core';
|
|
13
|
-
export type { Role, ContentPart, TextContent, ImageContent, Message, ToolCall, ToolResult, TokenUsage, CostBreakdown, StopReason, LLMResponse, StreamEvent, XRayData, StreamCheckpoint, ProviderConfig, CompletionRequest, ToolDefinition, Middleware, Result, Ok, Err, ElsiumStream, ResilientStreamOptions, LogLevel, Logger, ErrorCode, } from '@elsium-ai/core';
|
|
14
|
-
export { gateway, registerProviderFactory, calculateCost, registerPricing, composeMiddleware, loggingMiddleware, costTrackingMiddleware, xrayMiddleware, createAnthropicProvider, createOpenAIProvider, createGoogleProvider, createProviderMesh, securityMiddleware, detectPromptInjection, detectJailbreak, redactSecrets, checkBlockedPatterns, } from '@elsium-ai/gateway';
|
|
15
|
-
export type { LLMProvider, ProviderFactory, Gateway, GatewayConfig, XRayStore, ProviderMeshConfig, ProviderEntry, RoutingStrategy, ProviderMesh, SecurityMiddlewareConfig, SecurityViolation, SecurityResult, } from '@elsium-ai/gateway';
|
|
16
|
-
export { defineAgent, runSequential, runParallel, runSupervisor, createMemory, createSemanticValidator, createAgentSecurity, createConfidenceScorer, executeStateMachine, } from '@elsium-ai/agents';
|
|
17
|
-
export type { Agent, AgentDependencies, AgentConfig, AgentResult, AgentRunOptions, GuardrailConfig, AgentHooks, Memory, MemoryConfig, SemanticGuardrailConfig, SemanticCheck, SemanticCheckResult, SemanticValidationResult, SemanticValidator, AgentSecurityConfig, AgentSecurityResult, ConfidenceConfig, ConfidenceResult, StateDefinition, StateHistoryEntry, StateMachineResult, } from '@elsium-ai/agents';
|
|
12
|
+
export { ElsiumError, ok, err, isOk, isErr, unwrap, unwrapOr, tryCatch, tryCatchSync, createStream, createLogger, env, envNumber, envBool, generateId, generateTraceId, extractText, sleep, retry, zodToJsonSchema, createRegistry, countTokens, createContextManager, } from '@elsium-ai/core';
|
|
13
|
+
export type { Role, ContentPart, TextContent, ImageContent, AudioContent, DocumentContent, Message, ToolCall, ToolResult, TokenUsage, CostBreakdown, StopReason, LLMResponse, StreamEvent, XRayData, StreamCheckpoint, ProviderConfig, CompletionRequest, ToolDefinition, TenantContext, Middleware, Result, Ok, Err, ElsiumStream, ResilientStreamOptions, LogLevel, Logger, ErrorCode, Registry, ContextStrategy, ContextManagerConfig, ContextManager, } from '@elsium-ai/core';
|
|
14
|
+
export { gateway, registerProviderFactory, calculateCost, registerPricing, composeMiddleware, loggingMiddleware, costTrackingMiddleware, xrayMiddleware, createAnthropicProvider, createOpenAIProvider, createGoogleProvider, createProviderMesh, securityMiddleware, detectPromptInjection, detectJailbreak, redactSecrets, checkBlockedPatterns, cacheMiddleware, createInMemoryCache, outputGuardrailMiddleware, createBatch, } from '@elsium-ai/gateway';
|
|
15
|
+
export type { LLMProvider, ProviderFactory, Gateway, GatewayConfig, XRayStore, ProviderMeshConfig, ProviderEntry, RoutingStrategy, ProviderMesh, SecurityMiddlewareConfig, SecurityViolation, SecurityResult, CacheAdapter, CacheStats, CacheMiddlewareConfig, OutputGuardrailConfig, OutputGuardrailRule, OutputViolation, BatchConfig, BatchResult, BatchResultItem, } from '@elsium-ai/gateway';
|
|
16
|
+
export { defineAgent, runSequential, runParallel, runSupervisor, createMemory, createSemanticValidator, createAgentSecurity, createConfidenceScorer, executeStateMachine, createInMemoryMemoryStore, createSqliteMemoryStore, } from '@elsium-ai/agents';
|
|
17
|
+
export type { Agent, AgentDependencies, AgentConfig, AgentResult, AgentRunOptions, GuardrailConfig, AgentHooks, Memory, MemoryConfig, SemanticGuardrailConfig, SemanticCheck, SemanticCheckResult, SemanticValidationResult, SemanticValidator, AgentSecurityConfig, AgentSecurityResult, ConfidenceConfig, ConfidenceResult, StateDefinition, StateHistoryEntry, StateMachineResult, MemoryStore, SqliteMemoryStoreConfig, } from '@elsium-ai/agents';
|
|
18
18
|
export { defineTool, createToolkit, httpFetchTool, calculatorTool, jsonParseTool, currentTimeTool, formatToolResult, formatToolResultAsText, } from '@elsium-ai/tools';
|
|
19
19
|
export type { Tool, ToolConfig, ToolContext, ToolExecutionResult, Toolkit, } from '@elsium-ai/tools';
|
|
20
|
-
export { rag, createInMemoryStore, createOpenAIEmbeddings, createMockEmbeddings, } from '@elsium-ai/rag';
|
|
21
|
-
export type { RAGPipeline, RAGPipelineConfig, IngestResult, Document, Chunk, EmbeddedChunk, RetrievalResult, QueryOptions, EmbeddingProvider, VectorStore, } from '@elsium-ai/rag';
|
|
20
|
+
export { rag, createInMemoryStore, createOpenAIEmbeddings, createMockEmbeddings, vectorStoreRegistry, embeddingProviderRegistry, createPgVectorStore, } from '@elsium-ai/rag';
|
|
21
|
+
export type { RAGPipeline, RAGPipelineConfig, IngestResult, Document, Chunk, EmbeddedChunk, RetrievalResult, QueryOptions, EmbeddingProvider, VectorStore, VectorStoreFactory, EmbeddingProviderFactory, PgVectorStoreConfig, } from '@elsium-ai/rag';
|
|
22
22
|
export { defineWorkflow, defineParallelWorkflow, defineBranchWorkflow, step, } from '@elsium-ai/workflows';
|
|
23
23
|
export type { Workflow, WorkflowConfig, WorkflowResult, WorkflowRunOptions, StepConfig, StepContext, StepResult, } from '@elsium-ai/workflows';
|
|
24
|
-
export { observe, createSpan, createMetrics, createCostEngine, toOTelSpan, toOTelExportRequest, toTraceparent, parseTraceparent, injectTraceContext, extractTraceContext, createOTLPExporter, } from '@elsium-ai/observe';
|
|
25
|
-
export type { Tracer, TracerConfig, TracerExporter, CostReport, Span, SpanData, SpanKind, SpanStatus, MetricsCollector, MetricEntry, CostEngine, CostEngineConfig, CostAlert, CostDimension, CostIntelligenceReport, ModelSuggestion, OTelSpan, OTelExportRequest, TraceContext, OTLPExporterConfig, } from '@elsium-ai/observe';
|
|
26
|
-
export { createApp } from '@elsium-ai/app';
|
|
27
|
-
export type { AppConfig, ServerConfig, CorsConfig, AuthConfig, RateLimitConfig, } from '@elsium-ai/app';
|
|
24
|
+
export { observe, createSpan, createMetrics, createCostEngine, createExperiment, toOTelSpan, toOTelExportRequest, toTraceparent, parseTraceparent, injectTraceContext, extractTraceContext, createOTLPExporter, } from '@elsium-ai/observe';
|
|
25
|
+
export type { Tracer, TracerConfig, TracerExporter, CostReport, Span, SpanData, SpanKind, SpanStatus, MetricsCollector, MetricEntry, CostEngine, CostEngineConfig, CostAlert, CostDimension, CostIntelligenceReport, ModelSuggestion, Experiment, ExperimentConfig, ExperimentVariant, ExperimentResults, OTelSpan, OTelExportRequest, TraceContext, OTLPExporterConfig, } from '@elsium-ai/observe';
|
|
26
|
+
export { createApp, sseHeaders, formatSSE, streamResponse, tenantMiddleware, tenantRateLimitMiddleware, } from '@elsium-ai/app';
|
|
27
|
+
export type { AppConfig, ServerConfig, CorsConfig, AuthConfig, RateLimitConfig, StreamChatEvent, StreamCompleteEvent, TenantMiddlewareConfig, } from '@elsium-ai/app';
|
|
28
28
|
export { createMCPClient, createMCPServer } from '@elsium-ai/mcp';
|
|
29
29
|
export type { MCPClient, MCPClientConfig, MCPToolInfo, MCPServer, MCPServerConfig, } from '@elsium-ai/mcp';
|
|
30
|
+
export { createClient } from '@elsium-ai/client';
|
|
31
|
+
export type { ElsiumClient, ClientConfig, } from '@elsium-ai/client';
|
|
30
32
|
export { mockProvider, createFixture, loadFixture, createRecorder, runEvalSuite, formatEvalReport, createSnapshotStore, createPromptRegistry, definePrompt, createRegressionSuite, createReplayRecorder, createReplayPlayer, } from '@elsium-ai/testing';
|
|
31
33
|
export type { MockProviderOptions, MockResponseConfig, MockProvider, EvalSuiteConfig, EvalCase, EvalCriterion, EvalResult, EvalSuiteResult, LLMJudge, SnapshotStore, PromptDefinition, PromptDiff, PromptRegistry, RegressionBaseline, RegressionResult, RegressionDetail, RegressionSuite, ReplayEntry, ReplayRecorder, ReplayPlayer, } from '@elsium-ai/testing';
|
|
32
34
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAGH,OAAO,EAEN,WAAW,EAEX,EAAE,EACF,GAAG,EACH,IAAI,EACJ,KAAK,EACL,MAAM,EACN,QAAQ,EACR,QAAQ,EACR,YAAY,EAEZ,YAAY,EAEZ,YAAY,EAEZ,GAAG,EACH,SAAS,EACT,OAAO,EAEP,UAAU,EACV,eAAe,EACf,WAAW,EACX,KAAK,EACL,KAAK,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|