All files / src index.ts

0% Statements 0/6
100% Branches 1/1
100% Functions 1/1
0% Lines 0/6

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                                                                                           
/**
 * # CIA Compliance Manager
 *
 * Core module for the CIA Compliance Manager application that provides
 * tools for assessing, implementing, and managing security controls
 * across the CIA triad.
 *
 * ## Business Perspective
 *
 * This is the main entry point for the application, providing access to all
 * components, services, hooks and utilities needed to build and maintain
 * security compliance dashboards. 🔒
 *
 * @packageDocumentation
 */
 
// Re-export types with namespacing to avoid conflicts
import * as Types from "./types";
export { Types };
 
// Re-export services with namespacing
import * as Services from "./services";
export { Services };
 
// Re-export components with namespacing
import * as Components from "./components";
export { Components };
 
// Re-export hooks with namespacing
import * as Hooks from "./hooks";
export { Hooks };
 
// Re-export utils with namespacing
import * as Utils from "./utils";
export { Utils };
 
// Export the main app directly
export { default as CIAClassificationApp } from "./application/CIAClassificationApp";
 
// Selectively export commonly used types without ambiguity
export type { SecurityLevel, SecurityProfile } from "./types/cia";
export type { ComplianceStatus } from "./types/cia-services";
 
// Export interfaces for documentation purposes - will help TypeDoc
export type { ComponentTechnicalDetails } from "./services/technicalImplementationService";