Files
oh-my-opencode/dist/shared/migration/hook-names.d.ts
T

7 lines
200 B
TypeScript
Raw Normal View History

export declare const HOOK_NAME_MAP: Record<string, string | null>;
export declare function migrateHookNames(hooks: string[]): {
migrated: string[];
changed: boolean;
removed: string[];
};