chore: remove unused type VNodeDirectiveData (#1893)

This commit is contained in:
edison 2020-08-19 21:51:44 +08:00 committed by GitHub
parent c86e7ad11b
commit 7dd067206c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,12 +58,6 @@ export type Directive<T = any, V = any> =
export type DirectiveModifiers = Record<string, boolean> export type DirectiveModifiers = Record<string, boolean>
export type VNodeDirectiveData = [
unknown,
string | undefined,
DirectiveModifiers
]
const isBuiltInDirective = /*#__PURE__*/ makeMap( const isBuiltInDirective = /*#__PURE__*/ makeMap(
'bind,cloak,else-if,else,for,html,if,model,on,once,pre,show,slot,text' 'bind,cloak,else-if,else,for,html,if,model,on,once,pre,show,slot,text'
) )