@nuvin/agent-core 0.0.0-rc.9 → 0.1.0-rc.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/dist/VERSION +2 -2
- package/dist/agent/agent.d.ts +28 -0
- package/dist/agent/context-compactor.d.ts +8 -0
- package/dist/agent/extension-registry.d.ts +3 -0
- package/dist/agent/index.d.ts +8 -68
- package/dist/agent/index.js +1 -1
- package/dist/agent/messages-to-text.d.ts +3 -0
- package/dist/agent/metrics.d.ts +30 -0
- package/dist/agent/topic-reminder-extension.d.ts +32 -0
- package/dist/agent/turn-engine.d.ts +3 -0
- package/dist/chunk-FFIZ6TKW.js +1 -0
- package/dist/chunk-HRU363DY.js +1 -0
- package/dist/chunk-NHBKADBW.js +1 -0
- package/dist/chunk-NYZR4XKO.js +1 -1
- package/dist/chunk-QDOE7NWO.js +1 -0
- package/dist/chunk-X7VAACWY.js +1 -1
- package/dist/formats/base64-image-content.d.ts +4 -0
- package/dist/formats/index.d.ts +4 -28
- package/dist/formats/index.js +1 -1
- package/dist/formats/message-format.d.ts +33 -0
- package/dist/formats/provider-adapters.d.ts +3 -0
- package/dist/hooks/executor.d.ts +3 -0
- package/dist/hooks/extensions.d.ts +28 -0
- package/dist/hooks/index.d.ts +7 -0
- package/dist/hooks/index.js +1 -0
- package/dist/hooks/registry.d.ts +8 -0
- package/dist/hooks/types.d.ts +40 -0
- package/dist/lsp/client.d.ts +11 -0
- package/dist/lsp/index.d.ts +24 -0
- package/dist/lsp/installer.d.ts +11 -0
- package/dist/lsp/language.d.ts +2 -0
- package/dist/lsp/server.d.ts +6 -0
- package/dist/lsp/types.d.ts +68 -0
- package/dist/models/anthropic-model.d.ts +27 -0
- package/dist/models/anthropic-surface.d.ts +5 -0
- package/dist/models/chat-model.d.ts +31 -0
- package/dist/models/github-model.d.ts +32 -0
- package/dist/models/http-transport.d.ts +10 -0
- package/dist/models/index.d.ts +16 -347
- package/dist/models/index.js +1 -1
- package/dist/models/mock-model.d.ts +15 -0
- package/dist/models/model-errors.d.ts +16 -0
- package/dist/models/model-limits.d.ts +7 -0
- package/dist/models/model-registry.d.ts +44 -0
- package/dist/models/model-surface-router.d.ts +19 -0
- package/dist/models/model-transports.d.ts +17 -0
- package/dist/models/openai-model.d.ts +67 -0
- package/dist/models/openai-surfaces.d.ts +74 -0
- package/dist/models/provider-adapter.d.ts +23 -0
- package/dist/models/provider-session.d.ts +16 -0
- package/dist/models/routed-model.d.ts +90 -0
- package/dist/shared/abort.d.ts +9 -0
- package/dist/shared/index.d.ts +5 -17
- package/dist/shared/index.js +1 -1
- package/dist/shared/reasoning-config.d.ts +5 -0
- package/dist/shared/turn-failed.d.ts +6 -0
- package/dist/{types-Bb2eVtsy.d.ts → shared/types.d.ts} +180 -164
- package/dist/tools/ask-user-tool.d.ts +55 -0
- package/dist/tools/background-process-registry.d.ts +64 -0
- package/dist/tools/bash-internals.d.ts +5 -0
- package/dist/tools/bash-output-tool.d.ts +20 -0
- package/dist/tools/bash-tool.d.ts +75 -0
- package/dist/tools/command-tool.d.ts +23 -0
- package/dist/tools/file-edit-tool.d.ts +29 -0
- package/dist/tools/file-new-tool.d.ts +21 -0
- package/dist/tools/file-read-tool.d.ts +27 -0
- package/dist/tools/glob-tool.d.ts +26 -0
- package/dist/tools/grep-tool.d.ts +34 -0
- package/dist/tools/index.d.ts +31 -773
- package/dist/tools/index.js +1 -1
- package/dist/tools/internal-tool-runtime.d.ts +8 -0
- package/dist/tools/kill-shell-tool.d.ts +16 -0
- package/dist/tools/ls-tool.d.ts +20 -0
- package/dist/tools/lsp-tool.d.ts +36 -0
- package/dist/tools/mcp-oauth-provider.d.ts +11 -0
- package/dist/tools/mcp-server-manager.d.ts +43 -0
- package/dist/tools/mcp-tool-adapter.d.ts +47 -0
- package/dist/tools/mock-tool-runtime.d.ts +3 -0
- package/dist/tools/ripgrep.d.ts +20 -0
- package/dist/tools/runtime-manager-tools.d.ts +58 -0
- package/dist/tools/safe-fetch.d.ts +36 -0
- package/dist/tools/skill-tool.d.ts +33 -0
- package/dist/tools/todo-write-tool.d.ts +66 -0
- package/dist/tools/tool-output-offload.d.ts +12 -0
- package/dist/tools/tools.d.ts +24 -0
- package/dist/tools/update-topic-tool.d.ts +12 -0
- package/dist/tools/view-file-tool.d.ts +22 -0
- package/dist/tools/web-fetch-tool.d.ts +23 -0
- package/dist/tools/web-search-tool.d.ts +75 -0
- package/dist/tools/workspace-paths.d.ts +5 -0
- package/package.json +6 -2
- package/dist/chunk-3QLMAAJY.js +0 -1
- package/dist/chunk-4DNIDCX7.js +0 -1
- package/dist/chunk-G2FR4UGO.js +0 -1
- package/dist/provider-adapters-NxiNWlxu.d.ts +0 -5
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
export declare function createAskUserTool(): import("../shared/types.ts").ToolDefinition<{
|
|
2
|
+
answers: {};
|
|
3
|
+
questions: {
|
|
4
|
+
question: string;
|
|
5
|
+
topic: string;
|
|
6
|
+
options: {
|
|
7
|
+
label: string;
|
|
8
|
+
description: string;
|
|
9
|
+
}[];
|
|
10
|
+
multiSelect: boolean;
|
|
11
|
+
}[];
|
|
12
|
+
}, import("../shared/types.ts").ToolOutputEnvelope, import("../shared/types.ts").ToolOutputEnvelope | undefined, {
|
|
13
|
+
type: "object";
|
|
14
|
+
properties: {
|
|
15
|
+
questions: {
|
|
16
|
+
type: "array";
|
|
17
|
+
items: {
|
|
18
|
+
type: "object";
|
|
19
|
+
properties: {
|
|
20
|
+
question: {
|
|
21
|
+
type: "string";
|
|
22
|
+
};
|
|
23
|
+
topic: {
|
|
24
|
+
type: "string";
|
|
25
|
+
};
|
|
26
|
+
options: {
|
|
27
|
+
type: "array";
|
|
28
|
+
items: {
|
|
29
|
+
type: "object";
|
|
30
|
+
properties: {
|
|
31
|
+
label: {
|
|
32
|
+
type: "string";
|
|
33
|
+
};
|
|
34
|
+
description: {
|
|
35
|
+
type: "string";
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
required: string[];
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
multiSelect: {
|
|
42
|
+
type: "boolean";
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
required: string[];
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
answers: {
|
|
49
|
+
type: "object";
|
|
50
|
+
properties: {};
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
required: string[];
|
|
54
|
+
}>;
|
|
55
|
+
//# sourceMappingURL=ask-user-tool.d.ts.map
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import type { ChildProcess } from "node:child_process";
|
|
2
|
+
import { StringDecoder } from "node:string_decoder";
|
|
3
|
+
export type BackgroundProcessStatus = "running" | "exited" | "killed" | "error";
|
|
4
|
+
export interface BackgroundProcessEntry {
|
|
5
|
+
shellId: string;
|
|
6
|
+
command: string;
|
|
7
|
+
cwd: string;
|
|
8
|
+
pid: number | undefined;
|
|
9
|
+
status: BackgroundProcessStatus;
|
|
10
|
+
exitCode: number | null;
|
|
11
|
+
signal: NodeJS.Signals | null;
|
|
12
|
+
startedAt: number;
|
|
13
|
+
error?: string;
|
|
14
|
+
child: ChildProcess | null;
|
|
15
|
+
buffer: string[];
|
|
16
|
+
bufferChars: number;
|
|
17
|
+
totalProduced: number;
|
|
18
|
+
totalDropped: number;
|
|
19
|
+
readCursor: number;
|
|
20
|
+
stdoutDecoder: StringDecoder;
|
|
21
|
+
stderrDecoder: StringDecoder;
|
|
22
|
+
stripAnsi: boolean;
|
|
23
|
+
killRequested: boolean;
|
|
24
|
+
processExited: boolean;
|
|
25
|
+
}
|
|
26
|
+
export interface BackgroundProcessReadResult {
|
|
27
|
+
output: string;
|
|
28
|
+
status: BackgroundProcessStatus;
|
|
29
|
+
exitCode: number | null;
|
|
30
|
+
signal: NodeJS.Signals | null;
|
|
31
|
+
truncated: boolean;
|
|
32
|
+
}
|
|
33
|
+
export interface BackgroundProcessRegistryOptions {
|
|
34
|
+
maxConcurrent?: number;
|
|
35
|
+
maxEntries?: number;
|
|
36
|
+
capChars?: number;
|
|
37
|
+
}
|
|
38
|
+
export declare class BackgroundProcessRegistry {
|
|
39
|
+
private readonly entries;
|
|
40
|
+
private readonly maxConcurrent;
|
|
41
|
+
private readonly maxEntries;
|
|
42
|
+
private readonly capChars;
|
|
43
|
+
private counter;
|
|
44
|
+
constructor(opts?: BackgroundProcessRegistryOptions);
|
|
45
|
+
spawn(opts: {
|
|
46
|
+
child: ChildProcess;
|
|
47
|
+
command: string;
|
|
48
|
+
cwd: string;
|
|
49
|
+
stripAnsi: boolean;
|
|
50
|
+
}): BackgroundProcessEntry;
|
|
51
|
+
read(shellId: string, opts?: {
|
|
52
|
+
regex?: string;
|
|
53
|
+
}): BackgroundProcessReadResult;
|
|
54
|
+
list(): BackgroundProcessEntry[];
|
|
55
|
+
kill(shellId: string): {
|
|
56
|
+
status: BackgroundProcessStatus;
|
|
57
|
+
exitCode: number | null;
|
|
58
|
+
signal: NodeJS.Signals | null;
|
|
59
|
+
};
|
|
60
|
+
closeAll(): Promise<void>;
|
|
61
|
+
private append;
|
|
62
|
+
private evictIfNeeded;
|
|
63
|
+
}
|
|
64
|
+
//# sourceMappingURL=background-process-registry.d.ts.map
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { spawn } from "node:child_process";
|
|
2
|
+
export declare function isErrnoException(error: unknown): error is NodeJS.ErrnoException;
|
|
3
|
+
export declare function stripAnsiAndControls(s: string): string;
|
|
4
|
+
export declare function killProcessGroup(child: ReturnType<typeof spawn>, isWindows: boolean, signal?: NodeJS.Signals): void;
|
|
5
|
+
//# sourceMappingURL=bash-internals.d.ts.map
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { BackgroundProcessRegistry } from "./background-process-registry.ts";
|
|
2
|
+
export interface BashOutputToolOptions {
|
|
3
|
+
registry: BackgroundProcessRegistry;
|
|
4
|
+
}
|
|
5
|
+
export declare function createBashOutputTool(options: BashOutputToolOptions): import("../shared/types.ts").ToolDefinition<{
|
|
6
|
+
shellId: string;
|
|
7
|
+
regex?: string | undefined;
|
|
8
|
+
}, never, import("../shared/types.ts").ToolOutputEnvelope, {
|
|
9
|
+
type: "object";
|
|
10
|
+
properties: {
|
|
11
|
+
shellId: {
|
|
12
|
+
type: "string";
|
|
13
|
+
};
|
|
14
|
+
regex: {
|
|
15
|
+
type: "string";
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
required: readonly ["shellId"];
|
|
19
|
+
}>;
|
|
20
|
+
//# sourceMappingURL=bash-output-tool.d.ts.map
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import type { BackgroundProcessRegistry } from "./background-process-registry.ts";
|
|
2
|
+
export interface BashToolInput {
|
|
3
|
+
command: string;
|
|
4
|
+
cwd?: string;
|
|
5
|
+
timeoutMs?: number;
|
|
6
|
+
ignoreOutput?: boolean;
|
|
7
|
+
runInBackground?: boolean;
|
|
8
|
+
}
|
|
9
|
+
export interface BashToolOptions {
|
|
10
|
+
allowedDirs?: readonly string[];
|
|
11
|
+
defaultCwd?: string;
|
|
12
|
+
defaultTimeoutMs?: number;
|
|
13
|
+
description?: string;
|
|
14
|
+
env?: NodeJS.ProcessEnv;
|
|
15
|
+
name?: string;
|
|
16
|
+
shellPath?: string;
|
|
17
|
+
stripAnsi?: boolean;
|
|
18
|
+
scrubEnvKeys?: readonly string[];
|
|
19
|
+
backgroundRegistry?: BackgroundProcessRegistry;
|
|
20
|
+
}
|
|
21
|
+
export declare function createBashTool(options?: BashToolOptions): import("../shared/types.ts").ToolDefinition<{
|
|
22
|
+
command: string;
|
|
23
|
+
timeoutMs?: number | undefined;
|
|
24
|
+
cwd?: string | undefined;
|
|
25
|
+
ignoreOutput?: boolean | undefined;
|
|
26
|
+
runInBackground?: boolean | undefined;
|
|
27
|
+
}, string, import("../shared/types.ts").ToolOutputEnvelope, {
|
|
28
|
+
type: "object";
|
|
29
|
+
properties: {
|
|
30
|
+
command: {
|
|
31
|
+
type: "string";
|
|
32
|
+
};
|
|
33
|
+
cwd: {
|
|
34
|
+
type: "string";
|
|
35
|
+
};
|
|
36
|
+
timeoutMs: {
|
|
37
|
+
type: "number";
|
|
38
|
+
};
|
|
39
|
+
ignoreOutput: {
|
|
40
|
+
type: "boolean";
|
|
41
|
+
};
|
|
42
|
+
runInBackground: {
|
|
43
|
+
type: "boolean";
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
required: readonly ["command"];
|
|
47
|
+
}>;
|
|
48
|
+
export declare function createShellExecTool(options?: BashToolOptions): import("../shared/types.ts").ToolDefinition<{
|
|
49
|
+
command: string;
|
|
50
|
+
timeoutMs?: number | undefined;
|
|
51
|
+
cwd?: string | undefined;
|
|
52
|
+
ignoreOutput?: boolean | undefined;
|
|
53
|
+
runInBackground?: boolean | undefined;
|
|
54
|
+
}, string, import("../shared/types.ts").ToolOutputEnvelope, {
|
|
55
|
+
type: "object";
|
|
56
|
+
properties: {
|
|
57
|
+
command: {
|
|
58
|
+
type: "string";
|
|
59
|
+
};
|
|
60
|
+
cwd: {
|
|
61
|
+
type: "string";
|
|
62
|
+
};
|
|
63
|
+
timeoutMs: {
|
|
64
|
+
type: "number";
|
|
65
|
+
};
|
|
66
|
+
ignoreOutput: {
|
|
67
|
+
type: "boolean";
|
|
68
|
+
};
|
|
69
|
+
runInBackground: {
|
|
70
|
+
type: "boolean";
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
required: readonly ["command"];
|
|
74
|
+
}>;
|
|
75
|
+
//# sourceMappingURL=bash-tool.d.ts.map
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { CommandDefinitionReference, SerializedCommandDefinition } from "@nuvin/config";
|
|
2
|
+
export type CommandReference = CommandDefinitionReference;
|
|
3
|
+
export type LoadedCommand = SerializedCommandDefinition;
|
|
4
|
+
export interface CommandToolOptions<TRef extends CommandReference = CommandReference> {
|
|
5
|
+
commands: TRef[];
|
|
6
|
+
loadCommand: (reference: TRef) => Promise<LoadedCommand>;
|
|
7
|
+
}
|
|
8
|
+
export declare function createInvokeCommandTool<TRef extends CommandReference>(options: CommandToolOptions<TRef>): import("../shared/types.ts").ToolDefinition<{
|
|
9
|
+
name: string;
|
|
10
|
+
args?: string | undefined;
|
|
11
|
+
}, import("../shared/types.ts").ToolOutputEnvelope, undefined, {
|
|
12
|
+
type: "object";
|
|
13
|
+
properties: {
|
|
14
|
+
name: {
|
|
15
|
+
type: "string";
|
|
16
|
+
};
|
|
17
|
+
args: {
|
|
18
|
+
type: "string";
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
required: readonly ["name"];
|
|
22
|
+
}>;
|
|
23
|
+
//# sourceMappingURL=command-tool.d.ts.map
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export interface FileEditToolOptions {
|
|
2
|
+
allowedDirs?: readonly string[];
|
|
3
|
+
defaultCwd?: string;
|
|
4
|
+
name?: string;
|
|
5
|
+
}
|
|
6
|
+
export declare function createFileEditTool(options?: FileEditToolOptions): import("../shared/types.ts").ToolDefinition<{
|
|
7
|
+
filePath: string;
|
|
8
|
+
oldText: string;
|
|
9
|
+
newText: string;
|
|
10
|
+
dryRun?: boolean | undefined;
|
|
11
|
+
}, import("../shared/types.ts").ToolOutputEnvelope, undefined, {
|
|
12
|
+
type: "object";
|
|
13
|
+
properties: {
|
|
14
|
+
filePath: {
|
|
15
|
+
type: "string";
|
|
16
|
+
};
|
|
17
|
+
oldText: {
|
|
18
|
+
type: "string";
|
|
19
|
+
};
|
|
20
|
+
newText: {
|
|
21
|
+
type: "string";
|
|
22
|
+
};
|
|
23
|
+
dryRun: {
|
|
24
|
+
type: "boolean";
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
required: readonly ["filePath", "oldText", "newText"];
|
|
28
|
+
}>;
|
|
29
|
+
//# sourceMappingURL=file-edit-tool.d.ts.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export interface FileNewToolOptions {
|
|
2
|
+
allowedDirs?: readonly string[];
|
|
3
|
+
defaultCwd?: string;
|
|
4
|
+
name?: string;
|
|
5
|
+
}
|
|
6
|
+
export declare function createFileNewTool(options?: FileNewToolOptions): import("../shared/types.ts").ToolDefinition<{
|
|
7
|
+
content: string;
|
|
8
|
+
filePath: string;
|
|
9
|
+
}, import("../shared/types.ts").ToolOutputEnvelope, undefined, {
|
|
10
|
+
type: "object";
|
|
11
|
+
properties: {
|
|
12
|
+
filePath: {
|
|
13
|
+
type: "string";
|
|
14
|
+
};
|
|
15
|
+
content: {
|
|
16
|
+
type: "string";
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
required: readonly ["filePath", "content"];
|
|
20
|
+
}>;
|
|
21
|
+
//# sourceMappingURL=file-new-tool.d.ts.map
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export interface FileReadToolOptions {
|
|
2
|
+
allowedDirs?: readonly string[];
|
|
3
|
+
defaultCwd?: string;
|
|
4
|
+
name?: string;
|
|
5
|
+
}
|
|
6
|
+
export declare function createFileReadTool(options?: FileReadToolOptions): import("../shared/types.ts").ToolDefinition<{
|
|
7
|
+
path: string;
|
|
8
|
+
lineStart?: number | undefined;
|
|
9
|
+
lineEnd?: number | undefined;
|
|
10
|
+
}, import("../shared/types.ts").ToolOutputEnvelope, undefined, {
|
|
11
|
+
type: "object";
|
|
12
|
+
properties: {
|
|
13
|
+
path: {
|
|
14
|
+
type: "string";
|
|
15
|
+
};
|
|
16
|
+
lineStart: {
|
|
17
|
+
type: "number";
|
|
18
|
+
description: string;
|
|
19
|
+
};
|
|
20
|
+
lineEnd: {
|
|
21
|
+
type: "number";
|
|
22
|
+
description: string;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
required: readonly ["path"];
|
|
26
|
+
}>;
|
|
27
|
+
//# sourceMappingURL=file-read-tool.d.ts.map
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export interface GlobToolOptions {
|
|
2
|
+
allowedDirs?: readonly string[];
|
|
3
|
+
defaultCwd?: string;
|
|
4
|
+
limit?: number;
|
|
5
|
+
name?: string;
|
|
6
|
+
}
|
|
7
|
+
export declare function createGlobTool(options?: GlobToolOptions): import("../shared/types.ts").ToolDefinition<{
|
|
8
|
+
pattern: string;
|
|
9
|
+
path?: string | undefined;
|
|
10
|
+
limit?: number | undefined;
|
|
11
|
+
}, import("../shared/types.ts").ToolOutputEnvelope, undefined, {
|
|
12
|
+
type: "object";
|
|
13
|
+
properties: {
|
|
14
|
+
pattern: {
|
|
15
|
+
type: "string";
|
|
16
|
+
};
|
|
17
|
+
path: {
|
|
18
|
+
type: "string";
|
|
19
|
+
};
|
|
20
|
+
limit: {
|
|
21
|
+
type: "number";
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
required: readonly ["pattern"];
|
|
25
|
+
}>;
|
|
26
|
+
//# sourceMappingURL=glob-tool.d.ts.map
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export interface GrepToolOptions {
|
|
2
|
+
allowedDirs?: readonly string[];
|
|
3
|
+
defaultCwd?: string;
|
|
4
|
+
limit?: number;
|
|
5
|
+
name?: string;
|
|
6
|
+
}
|
|
7
|
+
export declare function createGrepTool(options?: GrepToolOptions): import("../shared/types.ts").ToolDefinition<{
|
|
8
|
+
pattern: string;
|
|
9
|
+
include?: string | undefined;
|
|
10
|
+
path?: string | undefined;
|
|
11
|
+
limit?: number | undefined;
|
|
12
|
+
context?: number | undefined;
|
|
13
|
+
}, import("../shared/types.ts").ToolOutputEnvelope, undefined, {
|
|
14
|
+
type: "object";
|
|
15
|
+
properties: {
|
|
16
|
+
pattern: {
|
|
17
|
+
type: "string";
|
|
18
|
+
};
|
|
19
|
+
path: {
|
|
20
|
+
type: "string";
|
|
21
|
+
};
|
|
22
|
+
include: {
|
|
23
|
+
type: "string";
|
|
24
|
+
};
|
|
25
|
+
limit: {
|
|
26
|
+
type: "number";
|
|
27
|
+
};
|
|
28
|
+
context: {
|
|
29
|
+
type: "number";
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
required: readonly ["pattern"];
|
|
33
|
+
}>;
|
|
34
|
+
//# sourceMappingURL=grep-tool.d.ts.map
|