diff options
| author | Kurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com> | 2025-07-17 08:49:12 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-17 08:49:12 -0400 |
| commit | ca0d5f0ec1f4ba21f4bf51f0f773d2b6bad45c93 (patch) | |
| tree | 8374652b65877b10bce3ea6e073165a02b6af0ba /src/exports.ts | |
| parent | 74ac6e7b7a18c2ae969b08242a5919f903d294e2 (diff) | |
| download | Decky-Framegen-ca0d5f0ec1f4ba21f4bf51f0f773d2b6bad45c93.tar.gz Decky-Framegen-ca0d5f0ec1f4ba21f4bf51f0f773d2b6bad45c93.zip | |
reorganize for readability and DRY (#115)v0.10.1
* reorganize for readability and DRY
* rm backup files
* ver bump
Diffstat (limited to 'src/exports.ts')
| -rw-r--r-- | src/exports.ts | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/exports.ts b/src/exports.ts new file mode 100644 index 0000000..a95f7b6 --- /dev/null +++ b/src/exports.ts @@ -0,0 +1,14 @@ +// Re-export components +export { FGModInstallerSection } from './components/FGModInstallerSection'; +export { InstalledGamesSection } from './components/InstalledGamesSection'; +export { ResultDisplay } from './components/ResultDisplay'; + +// Re-export utilities +export * from './utils'; +export * from './utils/constants'; + +// Re-export types +export * from './types/index'; + +// Re-export API +export * from './api'; |
