@v4fire/client
Version:
V4Fire client core library
20 lines (17 loc) • 478 B
text/typescript
/*!
* V4Fire Client Core
* https://github.com/V4Fire/Client
*
* Released under the MIT license
* https://github.com/V4Fire/Client/blob/master/LICENSE
*/
import type { VNodeDirective, DirectiveFunction } from 'core/component/engines';
export interface DirectiveOptions extends VNodeDirective {
value?: {
bind?: DirectiveFunction;
inserted?: DirectiveFunction;
update?: DirectiveFunction;
componentUpdated?: DirectiveFunction;
unbind?: DirectiveFunction;
};
}