modelfusion 0.99.0 → 0.101.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/CHANGELOG.md +1411 -0
- package/README.md +9 -15
- package/core/api/BaseUrlApiConfiguration.d.ts +7 -6
- package/core/api/BaseUrlPartsApiConfiguration.cjs +53 -0
- package/core/api/BaseUrlPartsApiConfiguration.d.ts +26 -0
- package/core/api/BaseUrlPartsApiConfiguration.js +49 -0
- package/core/api/index.cjs +1 -0
- package/core/api/index.d.ts +1 -0
- package/core/api/index.js +1 -0
- package/guard/fixStructure.cjs +3 -3
- package/guard/fixStructure.d.ts +3 -3
- package/guard/fixStructure.js +3 -3
- package/model-function/generate-structure/generateStructure.d.ts +2 -2
- package/model-function/generate-structure/streamStructure.d.ts +1 -1
- package/model-provider/automatic1111/Automatic1111ApiConfiguration.cjs +8 -9
- package/model-provider/automatic1111/Automatic1111ApiConfiguration.d.ts +7 -9
- package/model-provider/automatic1111/Automatic1111ApiConfiguration.js +8 -9
- package/model-provider/automatic1111/Automatic1111Error.cjs +7 -31
- package/model-provider/automatic1111/Automatic1111Error.d.ts +2 -11
- package/model-provider/automatic1111/Automatic1111Error.js +6 -28
- package/model-provider/automatic1111/Automatic1111Facade.cjs +10 -1
- package/model-provider/automatic1111/Automatic1111Facade.d.ts +7 -0
- package/model-provider/automatic1111/Automatic1111Facade.js +8 -0
- package/model-provider/automatic1111/Automatic1111ImageGenerationModel.cjs +22 -27
- package/model-provider/automatic1111/Automatic1111ImageGenerationModel.d.ts +8 -8
- package/model-provider/automatic1111/Automatic1111ImageGenerationModel.js +22 -27
- package/model-provider/automatic1111/index.cjs +1 -3
- package/model-provider/automatic1111/index.d.ts +1 -1
- package/model-provider/automatic1111/index.js +0 -1
- package/model-provider/llamacpp/LlamaCppTextGenerationModel.d.ts +6 -6
- package/model-provider/mistral/{MistralTextGenerationModel.cjs → MistralChatModel.cjs} +13 -13
- package/model-provider/mistral/{MistralTextGenerationModel.d.ts → MistralChatModel.d.ts} +21 -20
- package/model-provider/mistral/{MistralTextGenerationModel.js → MistralChatModel.js} +11 -11
- package/model-provider/mistral/MistralFacade.cjs +5 -5
- package/model-provider/mistral/MistralFacade.d.ts +3 -2
- package/model-provider/mistral/MistralFacade.js +3 -3
- package/model-provider/mistral/MistralPromptTemplate.d.ts +4 -4
- package/model-provider/mistral/index.cjs +1 -1
- package/model-provider/mistral/index.d.ts +1 -1
- package/model-provider/mistral/index.js +1 -1
- package/model-provider/ollama/OllamaApiConfiguration.d.ts +6 -5
- package/model-provider/ollama/OllamaChatModel.cjs +303 -0
- package/model-provider/ollama/OllamaChatModel.d.ts +171 -0
- package/model-provider/ollama/OllamaChatModel.js +299 -0
- package/model-provider/ollama/OllamaChatPromptTemplate.cjs +76 -0
- package/model-provider/ollama/OllamaChatPromptTemplate.d.ts +20 -0
- package/model-provider/ollama/OllamaChatPromptTemplate.js +69 -0
- package/model-provider/ollama/{OllamaTextGenerationModel.cjs → OllamaCompletionModel.cjs} +13 -11
- package/model-provider/ollama/OllamaCompletionModel.d.ts +159 -0
- package/model-provider/ollama/{OllamaTextGenerationModel.js → OllamaCompletionModel.js} +11 -9
- package/model-provider/ollama/{OllamaTextGenerationModel.test.cjs → OllamaCompletionModel.test.cjs} +3 -3
- package/model-provider/ollama/{OllamaTextGenerationModel.test.js → OllamaCompletionModel.test.js} +3 -3
- package/model-provider/ollama/OllamaFacade.cjs +15 -5
- package/model-provider/ollama/OllamaFacade.d.ts +7 -2
- package/model-provider/ollama/OllamaFacade.js +11 -3
- package/model-provider/ollama/OllamaTextGenerationSettings.cjs +2 -0
- package/model-provider/ollama/OllamaTextGenerationSettings.d.ts +87 -0
- package/model-provider/ollama/OllamaTextGenerationSettings.js +1 -0
- package/model-provider/ollama/index.cjs +4 -1
- package/model-provider/ollama/index.d.ts +4 -1
- package/model-provider/ollama/index.js +4 -1
- package/model-provider/openai/OpenAIFacade.cjs +4 -2
- package/model-provider/openai/OpenAIFacade.d.ts +3 -1
- package/model-provider/openai/OpenAIFacade.js +2 -1
- package/model-provider/openai/chat/AbstractOpenAIChatModel.d.ts +1 -1
- package/model-provider/openai/chat/OpenAIChatFunctionCallStructureGenerationModel.d.ts +3 -3
- package/model-provider/openai/chat/OpenAIChatModel.cjs +1 -1
- package/model-provider/openai/chat/OpenAIChatModel.d.ts +2 -2
- package/model-provider/openai/chat/OpenAIChatModel.js +1 -1
- package/model-provider/openai/chat/OpenAIChatPromptTemplate.d.ts +5 -5
- package/model-provider/openai/chat/OpenAIChatPromptTemplate.js +1 -1
- package/model-provider/openai-compatible/OpenAICompatibleFacade.cjs +1 -1
- package/model-provider/openai-compatible/OpenAICompatibleFacade.d.ts +1 -1
- package/model-provider/openai-compatible/OpenAICompatibleFacade.js +1 -1
- package/package.json +15 -15
- package/model-provider/ollama/OllamaTextGenerationModel.d.ts +0 -230
- /package/model-provider/ollama/{OllamaTextGenerationModel.test.d.ts → OllamaCompletionModel.test.d.ts} +0 -0
@@ -19,7 +19,7 @@ const OpenAICompatibleChatModel_js_1 = require("./OpenAICompatibleChatModel.cjs"
|
|
19
19
|
*
|
20
20
|
* const text = await generateText([
|
21
21
|
* model,
|
22
|
-
*
|
22
|
+
* openai.ChatMessage.system(
|
23
23
|
* "Write a short story about a robot learning to love:"
|
24
24
|
* ),
|
25
25
|
* ]);
|
@@ -16,7 +16,7 @@ import { OpenAICompatibleChatModel, OpenAICompatibleChatSettings } from "./OpenA
|
|
16
16
|
*
|
17
17
|
* const text = await generateText([
|
18
18
|
* model,
|
19
|
-
*
|
19
|
+
* openai.ChatMessage.system(
|
20
20
|
* "Write a short story about a robot learning to love:"
|
21
21
|
* ),
|
22
22
|
* ]);
|
@@ -16,7 +16,7 @@ import { OpenAICompatibleChatModel, } from "./OpenAICompatibleChatModel.js";
|
|
16
16
|
*
|
17
17
|
* const text = await generateText([
|
18
18
|
* model,
|
19
|
-
*
|
19
|
+
* openai.ChatMessage.system(
|
20
20
|
* "Write a short story about a robot learning to love:"
|
21
21
|
* ),
|
22
22
|
* ]);
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "modelfusion",
|
3
3
|
"description": "The TypeScript library for building multi-modal AI applications.",
|
4
|
-
"version": "0.
|
4
|
+
"version": "0.101.0",
|
5
5
|
"author": "Lars Grammel",
|
6
6
|
"license": "MIT",
|
7
7
|
"keywords": [
|
@@ -30,6 +30,10 @@
|
|
30
30
|
"engines": {
|
31
31
|
"node": ">=18"
|
32
32
|
},
|
33
|
+
"publishConfig": {
|
34
|
+
"directory": "dist",
|
35
|
+
"linkDirectory": true
|
36
|
+
},
|
33
37
|
"files": [
|
34
38
|
"./*"
|
35
39
|
],
|
@@ -56,16 +60,17 @@
|
|
56
60
|
}
|
57
61
|
},
|
58
62
|
"scripts": {
|
59
|
-
"setup": "husky install",
|
60
63
|
"lint": "eslint --ext .ts src",
|
61
|
-
"clean": "rimraf build dist",
|
62
|
-
"build": "
|
64
|
+
"clean": "rimraf build dist .turbo",
|
65
|
+
"build": "pnpm build:esm && pnpm build:cjs && pnpm build:copy-files",
|
63
66
|
"build:esm": "tsc --outDir dist/",
|
64
67
|
"build:cjs": "tsc --outDir build/cjs/ -p tsconfig.cjs.json && node bin/prepare-cjs.js",
|
68
|
+
"build:copy-files": "copyfiles --flat package.json ../../README.md ../../LICENSE ../../CHANGELOG.md dist",
|
65
69
|
"test": "vitest --config vitest.config.js --run src",
|
66
70
|
"test:watch": "vitest watch--config vitest.config.js",
|
67
|
-
"
|
68
|
-
"
|
71
|
+
"test:coverage": "vitest run --coverage",
|
72
|
+
"test:coverage:ui": "vitest run --coverage --ui",
|
73
|
+
"dist": "pnpm clean && pnpm lint && pnpm test && pnpm build"
|
69
74
|
},
|
70
75
|
"dependencies": {
|
71
76
|
"eventsource-parser": "1.1.1",
|
@@ -74,23 +79,18 @@
|
|
74
79
|
"secure-json-parse": "2.7.0",
|
75
80
|
"ws": "8.14.2",
|
76
81
|
"zod": "3.22.4",
|
77
|
-
"zod-to-json-schema": "3.22.
|
82
|
+
"zod-to-json-schema": "3.22.3"
|
78
83
|
},
|
79
84
|
"devDependencies": {
|
80
85
|
"@types/node": "18.11.9",
|
81
86
|
"@types/ws": "^8.5.7",
|
82
87
|
"@typescript-eslint/eslint-plugin": "^6.1.0",
|
83
88
|
"@typescript-eslint/parser": "^6.1.0",
|
84
|
-
"
|
89
|
+
"@vitest/coverage-v8": "^1.1.0",
|
90
|
+
"@vitest/ui": "1.1.0",
|
85
91
|
"eslint": "^8.45.0",
|
86
92
|
"eslint-config-prettier": "9.0.0",
|
87
93
|
"fastify": "^4.0.0",
|
88
|
-
"
|
89
|
-
"lint-staged": "15.1.0",
|
90
|
-
"msw": "2.0.10",
|
91
|
-
"prettier": "3.1.0",
|
92
|
-
"rimraf": "5.0.5",
|
93
|
-
"typescript": "5.2.2",
|
94
|
-
"vitest": "1.0.4"
|
94
|
+
"msw": "2.0.10"
|
95
95
|
}
|
96
96
|
}
|
@@ -1,230 +0,0 @@
|
|
1
|
-
import { z } from "zod";
|
2
|
-
import { FunctionOptions } from "../../core/FunctionOptions.js";
|
3
|
-
import { ApiConfiguration } from "../../core/api/ApiConfiguration.js";
|
4
|
-
import { ResponseHandler } from "../../core/api/postToApi.js";
|
5
|
-
import { AbstractModel } from "../../model-function/AbstractModel.js";
|
6
|
-
import { Delta } from "../../model-function/Delta.js";
|
7
|
-
import { PromptTemplateTextStreamingModel } from "../../model-function/generate-text/PromptTemplateTextStreamingModel.js";
|
8
|
-
import { TextGenerationModelSettings, TextStreamingModel } from "../../model-function/generate-text/TextGenerationModel.js";
|
9
|
-
import { TextGenerationPromptTemplate } from "../../model-function/generate-text/TextGenerationPromptTemplate.js";
|
10
|
-
import { TextGenerationToolCallModel, ToolCallPromptTemplate } from "../../tool/generate-tool-call/TextGenerationToolCallModel.js";
|
11
|
-
import { TextGenerationToolCallsOrGenerateTextModel, ToolCallsOrGenerateTextPromptTemplate } from "../../tool/generate-tool-calls-or-text/TextGenerationToolCallsOrGenerateTextModel.js";
|
12
|
-
/**
|
13
|
-
* @see https://github.com/jmorganca/ollama/blob/main/docs/api.md#generate-a-completion
|
14
|
-
*/
|
15
|
-
export interface OllamaTextGenerationModelSettings<CONTEXT_WINDOW_SIZE extends number | undefined> extends TextGenerationModelSettings {
|
16
|
-
api?: ApiConfiguration;
|
17
|
-
/**
|
18
|
-
* The name of the model to use. For example, 'mistral'.
|
19
|
-
*
|
20
|
-
* @see https://ollama.ai/library
|
21
|
-
*/
|
22
|
-
model: string;
|
23
|
-
/**
|
24
|
-
* The temperature of the model. Increasing the temperature will make the model
|
25
|
-
* answer more creatively. (Default: 0.8)
|
26
|
-
*/
|
27
|
-
temperature?: number;
|
28
|
-
/**
|
29
|
-
* Specify the context window size of the model that you have loaded in your
|
30
|
-
* Ollama server. (Default: 2048)
|
31
|
-
*/
|
32
|
-
contextWindowSize?: CONTEXT_WINDOW_SIZE;
|
33
|
-
/**
|
34
|
-
* Enable Mirostat sampling for controlling perplexity.
|
35
|
-
* (default: 0, 0 = disabled, 1 = Mirostat, 2 = Mirostat 2.0)
|
36
|
-
*/
|
37
|
-
mirostat?: number;
|
38
|
-
/**
|
39
|
-
* Influences how quickly the algorithm responds to feedback from the generated text.
|
40
|
-
* A lower learning rate will result in slower adjustments,
|
41
|
-
* while a higher learning rate will make the algorithm more responsive. (Default: 0.1)
|
42
|
-
*/
|
43
|
-
mirostatEta?: number;
|
44
|
-
/**
|
45
|
-
* Controls the balance between coherence and diversity of the output.
|
46
|
-
* A lower value will result in more focused and coherent text. (Default: 5.0)
|
47
|
-
*/
|
48
|
-
mirostatTau?: number;
|
49
|
-
/**
|
50
|
-
* The number of GQA groups in the transformer layer. Required for some models,
|
51
|
-
* for example it is 8 for llama2:70b
|
52
|
-
*/
|
53
|
-
numGqa?: number;
|
54
|
-
/**
|
55
|
-
* The number of layers to send to the GPU(s). On macOS it defaults to 1 to
|
56
|
-
* enable metal support, 0 to disable.
|
57
|
-
*/
|
58
|
-
numGpu?: number;
|
59
|
-
/**
|
60
|
-
* Sets the number of threads to use during computation. By default, Ollama will
|
61
|
-
* detect this for optimal performance. It is recommended to set this value to the
|
62
|
-
* number of physical CPU cores your system has (as opposed to the logical number of cores).
|
63
|
-
*/
|
64
|
-
numThreads?: number;
|
65
|
-
/**
|
66
|
-
* Sets how far back for the model to look back to prevent repetition.
|
67
|
-
* (Default: 64, 0 = disabled, -1 = num_ctx)
|
68
|
-
*/
|
69
|
-
repeatLastN?: number;
|
70
|
-
/**
|
71
|
-
* Sets how strongly to penalize repetitions. A higher value (e.g., 1.5)
|
72
|
-
* will penalize repetitions more strongly, while a lower value (e.g., 0.9)
|
73
|
-
* will be more lenient. (Default: 1.1)
|
74
|
-
*/
|
75
|
-
repeatPenalty?: number;
|
76
|
-
/**
|
77
|
-
* Sets the random number seed to use for generation. Setting this to a
|
78
|
-
* specific number will make the model generate the same text for the same prompt.
|
79
|
-
* (Default: 0)
|
80
|
-
*/
|
81
|
-
seed?: number;
|
82
|
-
/**
|
83
|
-
* Tail free sampling is used to reduce the impact of less probable tokens
|
84
|
-
* from the output. A higher value (e.g., 2.0) will reduce the impact more,
|
85
|
-
* while a value of 1.0 disables this setting. (default: 1)
|
86
|
-
*/
|
87
|
-
tfsZ?: number;
|
88
|
-
/**
|
89
|
-
* Reduces the probability of generating nonsense. A higher value (e.g. 100)
|
90
|
-
* will give more diverse answers, while a lower value (e.g. 10) will be more
|
91
|
-
* conservative. (Default: 40)
|
92
|
-
*/
|
93
|
-
topK?: number;
|
94
|
-
/**
|
95
|
-
* Works together with top-k. A higher value (e.g., 0.95) will lead to more
|
96
|
-
* diverse text, while a lower value (e.g., 0.5) will generate more focused
|
97
|
-
* and conservative text. (Default: 0.9)
|
98
|
-
*/
|
99
|
-
topP?: number;
|
100
|
-
/**
|
101
|
-
* When set to true, no formatting will be applied to the prompt and no context
|
102
|
-
* will be returned.
|
103
|
-
*/
|
104
|
-
raw?: boolean;
|
105
|
-
/**
|
106
|
-
* The format to return a response in. Currently the only accepted value is 'json'.
|
107
|
-
* Leave undefined to return a string.
|
108
|
-
*/
|
109
|
-
format?: "json";
|
110
|
-
system?: string;
|
111
|
-
template?: string;
|
112
|
-
context?: number[];
|
113
|
-
}
|
114
|
-
export interface OllamaTextGenerationPrompt {
|
115
|
-
/**
|
116
|
-
* Text prompt.
|
117
|
-
*/
|
118
|
-
prompt: string;
|
119
|
-
/**
|
120
|
-
Images. Supports base64-encoded `png` and `jpeg` images up to 100MB in size.
|
121
|
-
*/
|
122
|
-
images?: Record<number, string>;
|
123
|
-
}
|
124
|
-
export declare class OllamaTextGenerationModel<CONTEXT_WINDOW_SIZE extends number | undefined> extends AbstractModel<OllamaTextGenerationModelSettings<CONTEXT_WINDOW_SIZE>> implements TextStreamingModel<OllamaTextGenerationPrompt, OllamaTextGenerationModelSettings<CONTEXT_WINDOW_SIZE>> {
|
125
|
-
constructor(settings: OllamaTextGenerationModelSettings<CONTEXT_WINDOW_SIZE>);
|
126
|
-
readonly provider = "ollama";
|
127
|
-
get modelName(): string;
|
128
|
-
readonly tokenizer: undefined;
|
129
|
-
readonly countPromptTokens: undefined;
|
130
|
-
get contextWindowSize(): CONTEXT_WINDOW_SIZE;
|
131
|
-
callAPI<RESPONSE>(prompt: OllamaTextGenerationPrompt, options: {
|
132
|
-
responseFormat: OllamaTextGenerationResponseFormatType<RESPONSE>;
|
133
|
-
} & FunctionOptions): Promise<RESPONSE>;
|
134
|
-
get settingsForEvent(): Partial<OllamaTextGenerationModelSettings<CONTEXT_WINDOW_SIZE>>;
|
135
|
-
doGenerateTexts(prompt: OllamaTextGenerationPrompt, options?: FunctionOptions): Promise<{
|
136
|
-
response: {
|
137
|
-
response: string;
|
138
|
-
model: string;
|
139
|
-
done: true;
|
140
|
-
total_duration: number;
|
141
|
-
prompt_eval_count: number;
|
142
|
-
eval_count: number;
|
143
|
-
eval_duration: number;
|
144
|
-
load_duration?: number | undefined;
|
145
|
-
context?: number[] | undefined;
|
146
|
-
};
|
147
|
-
texts: string[];
|
148
|
-
}>;
|
149
|
-
doStreamText(prompt: OllamaTextGenerationPrompt, options?: FunctionOptions): Promise<AsyncIterable<Delta<string>>>;
|
150
|
-
asToolCallGenerationModel<INPUT_PROMPT>(promptTemplate: ToolCallPromptTemplate<INPUT_PROMPT, OllamaTextGenerationPrompt>): TextGenerationToolCallModel<INPUT_PROMPT, OllamaTextGenerationPrompt, this>;
|
151
|
-
asToolCallsOrTextGenerationModel<INPUT_PROMPT>(promptTemplate: ToolCallsOrGenerateTextPromptTemplate<INPUT_PROMPT, OllamaTextGenerationPrompt>): TextGenerationToolCallsOrGenerateTextModel<INPUT_PROMPT, OllamaTextGenerationPrompt, this>;
|
152
|
-
withTextPrompt(): PromptTemplateTextStreamingModel<string, OllamaTextGenerationPrompt, OllamaTextGenerationModelSettings<CONTEXT_WINDOW_SIZE>, this>;
|
153
|
-
withPromptTemplate<INPUT_PROMPT>(promptTemplate: TextGenerationPromptTemplate<INPUT_PROMPT, OllamaTextGenerationPrompt>): PromptTemplateTextStreamingModel<INPUT_PROMPT, OllamaTextGenerationPrompt, OllamaTextGenerationModelSettings<CONTEXT_WINDOW_SIZE>, this>;
|
154
|
-
withSettings(additionalSettings: Partial<OllamaTextGenerationModelSettings<CONTEXT_WINDOW_SIZE>>): this;
|
155
|
-
}
|
156
|
-
declare const ollamaTextGenerationResponseSchema: z.ZodObject<{
|
157
|
-
done: z.ZodLiteral<true>;
|
158
|
-
model: z.ZodString;
|
159
|
-
response: z.ZodString;
|
160
|
-
total_duration: z.ZodNumber;
|
161
|
-
load_duration: z.ZodOptional<z.ZodNumber>;
|
162
|
-
prompt_eval_count: z.ZodNumber;
|
163
|
-
eval_count: z.ZodNumber;
|
164
|
-
eval_duration: z.ZodNumber;
|
165
|
-
context: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
166
|
-
}, "strip", z.ZodTypeAny, {
|
167
|
-
response: string;
|
168
|
-
model: string;
|
169
|
-
done: true;
|
170
|
-
total_duration: number;
|
171
|
-
prompt_eval_count: number;
|
172
|
-
eval_count: number;
|
173
|
-
eval_duration: number;
|
174
|
-
load_duration?: number | undefined;
|
175
|
-
context?: number[] | undefined;
|
176
|
-
}, {
|
177
|
-
response: string;
|
178
|
-
model: string;
|
179
|
-
done: true;
|
180
|
-
total_duration: number;
|
181
|
-
prompt_eval_count: number;
|
182
|
-
eval_count: number;
|
183
|
-
eval_duration: number;
|
184
|
-
load_duration?: number | undefined;
|
185
|
-
context?: number[] | undefined;
|
186
|
-
}>;
|
187
|
-
export type OllamaTextGenerationResponse = z.infer<typeof ollamaTextGenerationResponseSchema>;
|
188
|
-
export type OllamaTextGenerationDelta = {
|
189
|
-
content: string;
|
190
|
-
isComplete: boolean;
|
191
|
-
delta: string;
|
192
|
-
};
|
193
|
-
export type OllamaTextGenerationResponseFormatType<T> = {
|
194
|
-
stream: boolean;
|
195
|
-
handler: ResponseHandler<T>;
|
196
|
-
};
|
197
|
-
export declare const OllamaTextGenerationResponseFormat: {
|
198
|
-
/**
|
199
|
-
* Returns the response as a JSON object.
|
200
|
-
*/
|
201
|
-
json: {
|
202
|
-
stream: false;
|
203
|
-
handler: ({ response, url, requestBodyValues }: {
|
204
|
-
url: string;
|
205
|
-
requestBodyValues: unknown;
|
206
|
-
response: Response;
|
207
|
-
}) => Promise<{
|
208
|
-
response: string;
|
209
|
-
model: string;
|
210
|
-
done: true;
|
211
|
-
total_duration: number;
|
212
|
-
prompt_eval_count: number;
|
213
|
-
eval_count: number;
|
214
|
-
eval_duration: number;
|
215
|
-
load_duration?: number | undefined;
|
216
|
-
context?: number[] | undefined;
|
217
|
-
}>;
|
218
|
-
};
|
219
|
-
/**
|
220
|
-
* Returns an async iterable over the full deltas (all choices, including full current state at time of event)
|
221
|
-
* of the response stream.
|
222
|
-
*/
|
223
|
-
deltaIterable: {
|
224
|
-
stream: true;
|
225
|
-
handler: ({ response }: {
|
226
|
-
response: Response;
|
227
|
-
}) => Promise<AsyncIterable<Delta<string>>>;
|
228
|
-
};
|
229
|
-
};
|
230
|
-
export {};
|
File without changes
|