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