Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Element
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
林焕东
Element
Commits
9aac9d80
Commit
9aac9d80
authored
Oct 26, 2017
by
Axel Manuel
Committed by
杨奕
Oct 27, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tree: Remove implicit any from .d.ts
parent
ca0bc135
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
types/tree.d.ts
types/tree.d.ts
+2
-2
No files found.
types/tree.d.ts
View file @
9aac9d80
...
...
@@ -46,7 +46,7 @@ export declare class ElTree extends ElementUIComponent {
props
:
object
/** Method for loading subtree data */
load
:
(
node
:
TreeNode
,
resolve
)
=>
void
load
:
(
node
:
TreeNode
,
resolve
:
Function
)
=>
void
/** Render function for tree node */
renderContent
:
RenderContent
...
...
@@ -128,7 +128,7 @@ export declare class ElTree extends ElementUIComponent {
* @param checked Indicating the node checked or not
* @param deep Indicating whether to checked state deeply or not
*/
setChecked
(
data
:
TreeNode
|
any
,
checked
:
boolean
,
deep
:
boolean
)
setChecked
(
data
:
TreeNode
|
any
,
checked
:
boolean
,
deep
:
boolean
)
:
void
/**
* Return the highlight node's key (null if no node is highlighted)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment