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

8 lines
211 B
TypeScript
Raw Normal View History

2023-07-06 11:09:01 +00:00
import { ObjectDirective } from 'vue';
export interface DirectiveHooks extends Omit<ObjectDirective, 'getSSRProps' | 'deep'> {}
export interface BaseDirectivePassThroughOptions {
hooks?: DirectiveHooks;
}