File tree 2 files changed +12
-0
lines changed
2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import { SetupContext } from './v3-setup-context'
4
4
import { DebuggerEvent } from './v3-generated'
5
5
import { DefineComponent } from './v3-define-component'
6
6
import { ComponentOptionsMixin } from './v3-component-options'
7
+ import { ObjectDirective , FunctionDirective } from './v3-directive'
7
8
8
9
type Constructor = {
9
10
new ( ...args : any [ ] ) : any
@@ -318,13 +319,19 @@ export interface DirectiveBinding extends Readonly<VNodeDirective> {
318
319
readonly modifiers : { [ key : string ] : boolean }
319
320
}
320
321
322
+ /**
323
+ * @deprecated use {@link FunctionDirective} instead
324
+ */
321
325
export type DirectiveFunction = (
322
326
el : HTMLElement ,
323
327
binding : DirectiveBinding ,
324
328
vnode : VNode ,
325
329
oldVnode : VNode
326
330
) => void
327
331
332
+ /**
333
+ * @deprecated use {@link ObjectDirective} instead
334
+ */
328
335
export interface DirectiveOptions {
329
336
bind ?: DirectiveFunction
330
337
inserted ?: DirectiveFunction
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ import {
22
22
ExtractComputedReturns ,
23
23
ComponentOptionsMixin
24
24
} from './v3-component-options'
25
+ import { Directive , ObjectDirective } from './v3-directive'
25
26
26
27
export interface CreateElement {
27
28
(
@@ -338,6 +339,10 @@ export interface VueConstructor<V extends Vue = Vue> {
338
339
id : string ,
339
340
definition ?: DirectiveOptions | DirectiveFunction
340
341
) : DirectiveOptions
342
+ directive (
343
+ id : string ,
344
+ definition ?: Directive
345
+ ) : ObjectDirective
341
346
filter ( id : string , definition ?: Function ) : Function
342
347
343
348
component ( id : string ) : VueConstructor
You can’t perform that action at this time.
0 commit comments