From 20db86da3e492e6b966e008dab11102bc03937e0 Mon Sep 17 00:00:00 2001 From: Playwright Service <89237858+playwrightmachine@users.noreply.github.com> Date: Thu, 29 Feb 2024 01:28:45 -0800 Subject: [PATCH] cherry-pick(#29706): fit(ct): remove unused type import (#29709) This PR cherry-picks the following commits: - 772345c83ca53542f2ccd74fe12ccb2dcaf099a2 Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> --- packages/playwright-ct-core/types/component.d.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/playwright-ct-core/types/component.d.ts b/packages/playwright-ct-core/types/component.d.ts index 7502ec2f06..5bd5d7e017 100644 --- a/packages/playwright-ct-core/types/component.d.ts +++ b/packages/playwright-ct-core/types/component.d.ts @@ -14,8 +14,6 @@ * limitations under the License. */ -import type { ImportRegistry } from '../src/injected/importRegistry'; - type JsonPrimitive = string | number | boolean | null; type JsonValue = JsonPrimitive | JsonObject | JsonArray; type JsonArray = JsonValue[];