Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | /**
* Re-exports all constants for easier imports
*
* ## Business Perspective
*
* This file centralizes access to all business constants,
* ensuring consistency across the application. 💼
*/
export * from "./appConstants";
export {
BUSINESS_CONSIDERATIONS,
BUSINESS_KEY_BENEFITS,
BUSINESS_VALUE_METRICS,
} from "./businessConstants";
export {} from "./complianceConstants";
export * from "./riskConstants";
export * from "./costConstants";
export * from "./testIds";
export type {
BusinessConsideration,
BusinessConsiderations,
BusinessKeyBenefit,
BusinessKeyBenefits,
} from "../types/businessImpact";
export { BUSINESS_IMPACT_CATEGORIES, RISK_LEVELS } from "./riskConstants";
export {
BUSINESS_IMPACT_ICONS,
CIA_COMPONENT_ICONS,
SECURITY_ICONS,
SECURITY_LEVEL_COLORS,
} from "./uiConstants";
export { WIDGET_ICONS, WIDGET_TITLES } from "./appConstants";
export * from "./designTokens";
export * from "./keyboardShortcuts";
|