8 lines
166 B
TypeScript
8 lines
166 B
TypeScript
|
import { ClientHookName } from './client-hook.model'
|
||
|
|
||
|
export interface RegisterClientHookOptions {
|
||
|
target: ClientHookName
|
||
|
handler: Function
|
||
|
priority?: number
|
||
|
}
|