⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
invoice
/
node_modules
/
vue
/
types
/
View File Name :
v3-directive.d.ts
import type { VNodeDirective, VNode } from './vnode' export type DirectiveModifiers = Record<string, boolean> export interface DirectiveBinding<V> extends Readonly<VNodeDirective> { readonly modifiers: DirectiveModifiers readonly value: V readonly oldValue: V | null } export type DirectiveHook<T = any, Prev = VNode | null, V = any> = ( el: T, binding: DirectiveBinding<V>, vnode: VNode, prevVNode: Prev ) => void export interface ObjectDirective<T = any, V = any> { bind?: DirectiveHook<T, any, V> inserted?: DirectiveHook<T, any, V> update?: DirectiveHook<T, any, V> componentUpdated?: DirectiveHook<T, any, V> unbind?: DirectiveHook<T, any, V> } export type FunctionDirective<T = any, V = any> = DirectiveHook<T, any, V> export type Directive<T = any, V = any> = | ObjectDirective<T, V> | FunctionDirective<T, V>