primevue-mirror/components/lib/basedirective/BaseDirective.d.ts

8 lines
211 B
TypeScript

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