diff --git a/src/extensions.xml b/src/extensions.xml
index 2d9e1ed..0c95c7e 100644
--- a/src/extensions.xml
+++ b/src/extensions.xml
@@ -481,5 +481,13 @@
https://arcade.makecode.com/S25961-93672-24496-79526
+
+ Using some clever z-indexing, you're able to perform beautiful screen transitions between scenes! This adds a `Screen Transitions` category.
+
+ https://github.com/riknoll/arcade-screen-transitions
+ https://forum.makecode.com/t/extension-arcade-screen-transitions/23834?u=unsignedarduino
+ https://arcade.makecode.com/S04393-06456-09228-87946
+
+
diff --git a/src/scripts/Utils/ParseOldExtensionsXML/index.ts b/src/scripts/Utils/ParseOldExtensionsXML/index.ts
index 066ba0a..ca479e0 100644
--- a/src/scripts/Utils/ParseOldExtensionsXML/index.ts
+++ b/src/scripts/Utils/ParseOldExtensionsXML/index.ts
@@ -1,9 +1,9 @@
export { default } from "./parse";
+export type { ExtensionList } from "./parse";
export type {
- ExtensionList,
Extension,
Tool,
ExtensionRef,
ToolRef,
URLLink,
-} from "./parse";
+} from "../ParseListXML/types";