chore: generate

This commit is contained in:
opencode-agent[bot]
2026-03-22 00:51:19 +00:00
parent 3236f228fb
commit e82c5a9a28
2 changed files with 20 additions and 13 deletions

View File

@@ -24,9 +24,7 @@ export namespace Plugin {
// Hook names that follow the (input, output) => Promise<void> trigger pattern
type TriggerName = {
[K in keyof Hooks]-?: NonNullable<Hooks[K]> extends (input: any, output: any) => Promise<void>
? K
: never
[K in keyof Hooks]-?: NonNullable<Hooks[K]> extends (input: any, output: any) => Promise<void> ? K : never
}[keyof Hooks]
export interface Interface {