mirror of
https://github.com/withastro/astro.git
synced 2025-03-10 23:01:26 -05:00
fix: correct broken import formatting (#13058)
This commit is contained in:
parent
c7f1366413
commit
1a14b53678
2 changed files with 7 additions and 3 deletions
5
.changeset/clean-suns-shout.md
Normal file
5
.changeset/clean-suns-shout.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Fixes broken type declaration
|
5
packages/astro/client.d.ts
vendored
5
packages/astro/client.d.ts
vendored
|
@ -168,9 +168,8 @@ declare module 'astro:transitions/client' {
|
|||
export type TransitionBeforeSwapEvent = import('./dist/virtual-modules/transitions-events.js').TransitionBeforeSwapEvent;
|
||||
export const isTransitionBeforePreparationEvent: EventModule['isTransitionBeforePreparationEvent'];
|
||||
export const isTransitionBeforeSwapEvent: EventModule['isTransitionBeforeSwapEvent'];
|
||||
type TransitionSwapFunctionModule = typeof import(
|
||||
'./dist/virtual-modules/transitions-swap-functions.js',
|
||||
);
|
||||
// biome-ignore format: bug
|
||||
type TransitionSwapFunctionModule = typeof import('./dist/virtual-modules/transitions-swap-functions.js');
|
||||
export const swapFunctions: TransitionSwapFunctionModule['swapFunctions'];
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue