-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make some changes required for types to work on NPM
- Loading branch information
Showing
4 changed files
with
12 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
declare module "@moonlight-mod/wp/spacepack_spacepack" { | ||
import { Spacepack } from "@moonlight-mod/types/coreExtensions"; | ||
export const spacepack: Spacepack; | ||
import { CoreExtensions } from "@moonlight-mod/types"; | ||
export const spacepack: CoreExtensions.Spacepack; | ||
export default spacepack; | ||
} | ||
|
||
declare module "@moonlight-mod/wp/common_components" { | ||
import { CommonComponents } from "@moonlight-mod/types/coreExtensions"; | ||
const components: CommonComponents; | ||
import { CoreExtensions } from "@moonlight-mod/types"; | ||
const components: CoreExtensions.CommonComponents; | ||
export default components; | ||
} | ||
|
||
declare module "@moonlight-mod/wp/common_flux" { | ||
import { CommonFlux } from "@moonlight-mod/types/coreExtensions"; | ||
const Flux: CommonFlux; | ||
import { CoreExtensions } from "@moonlight-mod/types"; | ||
const Flux: CoreExtensions.CommonFlux; | ||
export default Flux; | ||
} | ||
|
||
declare module "@moonlight-mod/wp/common_fluxDispatcher" { | ||
import { CommonFluxDispatcher } from "@moonlight-mod/types/coreExtensions"; | ||
const Dispatcher: CommonFluxDispatcher; | ||
import { CoreExtensions } from "@moonlight-mod/types"; | ||
const Dispatcher: CoreExtensions.CommonFluxDispatcher; | ||
export default Dispatcher; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters