/** * @fileoverview Taint source definitions - Builtin sources for interprocedural taint analysis * @module @nahisaho/musubix-security/analysis/sources * @trace REQ-SEC-001 (EARS: テイント分析の高度化) */ export * from './user-input.js'; export * from './http-request.js'; export * from './database.js'; export * from './file-system.js'; export * from './environment.js'; export * from './types.js'; import type { SourceDefinition } from './types.js'; /** * All built-in taint sources aggregated * @trace REQ-SEC-001 */ export declare const ALL_BUILTIN_SOURCES: readonly SourceDefinition[]; /** * Get sources by category */ export declare function getSourcesByCategory(category: SourceDefinition['category']): readonly SourceDefinition[]; /** * Get sources by framework */ export declare function getSourcesByFramework(framework: string): readonly SourceDefinition[]; //# sourceMappingURL=index.d.ts.map