/** * Bundling constructs for packaging code artifacts. * * Organization: * - zip/ - Code zip assets for CodeZip runtime * - container/ - Source assets for Container runtime */ export { BundledCodeZipAsset, type BundledCodeZipAssetProps, type PackageResult } from './zip'; export { NodeBundledCodeZipAsset } from './zip'; export { PythonBundledCodeZipAsset } from './zip'; export { ContainerSourceAsset, type ContainerSourceAssetProps } from './container'; export { ContainerSourceAssetFromPath, type ContainerSourceAssetFromPathProps } from './container'; //# sourceMappingURL=index.d.ts.map