index.ts52 lines · main
| 1 | import { |
| 2 | COMPUTE_BASELINE_IOPS, |
| 3 | COMPUTE_BASELINE_THROUGHPUT, |
| 4 | COMPUTE_DISK, |
| 5 | COMPUTE_MAX_IOPS, |
| 6 | COMPUTE_MAX_THROUGHPUT, |
| 7 | computeInstanceAddonVariantIdSchema, |
| 8 | } from './compute-disk-limits' |
| 9 | import config from './config' |
| 10 | import { ERROR_CODE_DOCS_URLS, ERROR_CODES, HTTP_ERROR_CODES } from './error-codes' |
| 11 | import type { ErrorCodeDefinition, ErrorCodeService } from './error-codes' |
| 12 | import extensions from './extensions.json' |
| 13 | import logConstants from './log-constants' |
| 14 | import { plans, PricingInformation } from './plans' |
| 15 | import { pricing } from './pricing' |
| 16 | import { PRODUCT_MODULES, products } from './products' |
| 17 | import questions from './questions' |
| 18 | import type { AWS_REGIONS_KEYS, CloudProvider, Region } from './regions' |
| 19 | import { AWS_REGIONS, FLY_REGIONS } from './regions' |
| 20 | import tweets, { topTweets } from './tweets' |
| 21 | |
| 22 | export { |
| 23 | AWS_REGIONS, |
| 24 | COMPUTE_BASELINE_IOPS, |
| 25 | COMPUTE_BASELINE_THROUGHPUT, |
| 26 | COMPUTE_DISK, |
| 27 | COMPUTE_MAX_IOPS, |
| 28 | COMPUTE_MAX_THROUGHPUT, |
| 29 | computeInstanceAddonVariantIdSchema, |
| 30 | config, |
| 31 | ERROR_CODE_DOCS_URLS, |
| 32 | ERROR_CODES, |
| 33 | HTTP_ERROR_CODES, |
| 34 | extensions, |
| 35 | FLY_REGIONS, |
| 36 | logConstants, |
| 37 | plans, |
| 38 | pricing, |
| 39 | PRODUCT_MODULES, |
| 40 | products, |
| 41 | questions, |
| 42 | topTweets, |
| 43 | tweets, |
| 44 | } |
| 45 | export type { |
| 46 | AWS_REGIONS_KEYS, |
| 47 | CloudProvider, |
| 48 | ErrorCodeDefinition, |
| 49 | ErrorCodeService, |
| 50 | PricingInformation, |
| 51 | Region, |
| 52 | } |