Skip to content

Commit 56a07f2

Browse files
committed
post-merge fix
1 parent 2fec3e0 commit 56a07f2

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

packages/core/src/types/Uri.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { RegExpGroups } from "../utils/RegExpGroups";
1+
import { RegExpGroups } from "../utils";
22

33
import { Result, ResultErr, ResultOk } from "@polywrap/result";
44

packages/core/src/types/WrapError.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { CleanResolutionStep } from "../algorithms";
2-
import { RegExpGroups } from "../utils/RegExpGroups";
2+
import { RegExpGroups } from "../utils";
33

44
export type ErrorSource = Readonly<{
55
file?: string;
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
export type RegExpGroups<T extends string> =
2+
| (RegExpExecArray & {
3+
groups?: { [name in T]: string | undefined } | { [key: string]: string };
4+
})
5+
| null;

0 commit comments

Comments
 (0)