/** * Adapter Layer for Web-App Integration * * This module provides adapters to bridge the existing web-app data structures * to the new integration-components interfaces with minimal code changes. */ export { adaptResource, adaptResources, isWebAppResource, type WebAppResource, } from './asset-adapter'; export { adaptFolder, adaptFolders, adaptFolderToTree, adaptFoldersToTree, buildFolderTree, isWebAppFolder, type WebAppFolder, type WebAppFolderWithParent, } from './folder-adapter'; export { adaptPreset, adaptPresets, adaptPresetsWithCategories, createOriginalPreset, findWebAppPreset, getFullPreset, isWebAppPreset, type WebAppPreset, } from './preset-adapter'; export { getAssetBrowserProps, getAssetByIndex, getCurrentFolder, getFolderByIndex, getFolderTreeProps, getPaginationInfo, getPresetCategories, getPresetOptions, type AdaptedAssetBrowserProps, type AdaptedFolderTreeProps, type WebAppAppStore, type WebAppAuthStore, type WebAppGridData, } from './store-adapter'; export { createAssetCardActions, createDownloadWithPresetHandler, createFolderCardActions, createFolderTreeSelectHandler, createSelectionHandlers, type AssetCardActions, type FolderCardActions, type WebAppAuthActions, type WebAppStoreActions, } from './action-adapter'; //# sourceMappingURL=index.d.ts.map