8 lines
211 B
TypeScript
8 lines
211 B
TypeScript
|
import { ObjectDirective } from 'vue';
|
||
|
|
||
|
export interface DirectiveHooks extends Omit<ObjectDirective, 'getSSRProps' | 'deep'> {}
|
||
|
|
||
|
export interface BaseDirectivePassThroughOptions {
|
||
|
hooks?: DirectiveHooks;
|
||
|
}
|