From 2af8e9621fd46d66e9260fae2aaa787556ec9029 Mon Sep 17 00:00:00 2001 From: Martin Trapp Date: Wed, 28 Feb 2024 15:53:13 +0000 Subject: [PATCH] [ci] format --- packages/astro/src/@types/astro.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index 180f721de5..e8a948347c 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -34,9 +34,12 @@ import type { DevToolbarWindow, } from '../runtime/client/dev-toolbar/ui-library/index.js'; import type { AstroComponentFactory, AstroComponentInstance } from '../runtime/server/index.js'; +import type { + TransitionBeforePreparationEvent, + TransitionBeforeSwapEvent, +} from '../transitions/events.js'; import type { DeepPartial, OmitIndexSignature, Simplify } from '../type-utils.js'; import type { SUPPORTED_MARKDOWN_FILE_EXTENSIONS } from './../core/constants.js'; -import type { TransitionBeforePreparationEvent, TransitionBeforeSwapEvent } from '../transitions/events.js'; export { type AstroIntegrationLogger };