diff --git a/packages/gnome-shell/package.json b/packages/gnome-shell/package.json index e9056f7..b6c4c89 100644 --- a/packages/gnome-shell/package.json +++ b/packages/gnome-shell/package.json @@ -1,6 +1,6 @@ { "name": "@girs/gnome-shell", - "version": "49.0.2", + "version": "49.0.3", "description": "GJS TypeScript type definitions for GNOME Shell Extensions", "type": "module", "main": "./dist/index.js", diff --git a/packages/gnome-shell/src/types/extension-object.ts b/packages/gnome-shell/src/types/extension-object.ts index 7a7ee78..532c468 100644 --- a/packages/gnome-shell/src/types/extension-object.ts +++ b/packages/gnome-shell/src/types/extension-object.ts @@ -1,7 +1,7 @@ import type Gio from '@girs/gio-2.0'; -import type { Extension } from '../extensions/extension'; -import type { ExtensionState, ExtensionType } from '../misc/extensionUtils'; +import type { Extension } from '../extensions/extension.js'; +import type { ExtensionState, ExtensionType } from '../misc/extensionUtils.js'; import type { MetadataJson } from './extension-metadata.js'; /** diff --git a/packages/gnome-shell/src/ui/extensionSystem.d.ts b/packages/gnome-shell/src/ui/extensionSystem.d.ts index 67df0ea..525988a 100644 --- a/packages/gnome-shell/src/ui/extensionSystem.d.ts +++ b/packages/gnome-shell/src/ui/extensionSystem.d.ts @@ -4,7 +4,7 @@ import type Gio from '@girs/gio-2.0'; import * as Signals from '../misc/signals.js'; import type { ExtensionType } from '../misc/extensionUtils.js'; -import type { ExtensionObject } from '../types'; +import type { ExtensionObject } from '../types/extension-object.js'; /** * @see https://gitlab.gnome.org/GNOME/gnome-shell/-/blob/main/js/dbusServices/extensions/extensionsService.js#L15