mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-10 14:10:37 -07:00
30 lines
880 B
TypeScript
30 lines
880 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
// Export types
|
|
export * from './types.js';
|
|
|
|
// Export core components
|
|
export { HookSystem } from './hookSystem.js';
|
|
export { HookRegistry } from './hookRegistry.js';
|
|
export { HookRunner } from './hookRunner.js';
|
|
export { HookAggregator } from './hookAggregator.js';
|
|
export { HookPlanner } from './hookPlanner.js';
|
|
export { HookEventHandler } from './hookEventHandler.js';
|
|
|
|
// Export interfaces and enums
|
|
export type { HookRegistryEntry } from './hookRegistry.js';
|
|
export { ConfigSource } from './hookRegistry.js';
|
|
export type { AggregatedHookResult } from './hookAggregator.js';
|
|
export type { HookEventContext } from './hookPlanner.js';
|
|
|
|
// Export hook trigger functions
|
|
export {
|
|
fireSessionStartHook,
|
|
fireSessionEndHook,
|
|
firePreCompressHook,
|
|
} from '../core/sessionHookTriggers.js';
|