@v4fire/client
Version:
V4Fire client core library
19 lines (15 loc) • 398 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 } from 'core/component/engines';
import type { InitValue } from 'core/dom/image';
export interface DirectiveOptions extends VNodeDirective {
modifiers: {
[key: string]: boolean;
};
value?: InitValue;
}