mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-11-29 18:57:36 +08:00
Carbon: Remove implicit any from .d.ts
This commit is contained in:
parent
6a172c758b
commit
d180ec5c9e
2
types/component.d.ts
vendored
2
types/component.d.ts
vendored
@ -3,7 +3,7 @@ import Vue from 'vue'
|
||||
/** ElementUI component common definition */
|
||||
export declare class ElementUIComponent extends Vue {
|
||||
/** Install component into Vue */
|
||||
static install (vue: typeof Vue)
|
||||
static install (vue: typeof Vue): void
|
||||
}
|
||||
|
||||
/** Component size definition for button, input, etc */
|
||||
|
2
types/index.d.ts
vendored
2
types/index.d.ts
vendored
@ -77,7 +77,7 @@ declare namespace ElementUI {
|
||||
* Please do not invoke this method directly.
|
||||
* Call `Vue.use(ElementUI)` to install.
|
||||
*/
|
||||
export function install (vue: typeof Vue, options: ElementUI.InstallationOptions)
|
||||
export function install (vue: typeof Vue, options: ElementUI.InstallationOptions): void
|
||||
|
||||
/** ElementUI component common definition */
|
||||
export type Component = ElementUIComponent
|
||||
|
Loading…
Reference in New Issue
Block a user