You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
409 B
8 lines
409 B
/// <reference types="miniprogram-api-typings" /> |
|
import { VantComponentOptions } from '../definitions/index'; |
|
declare function VantComponent< |
|
Data extends WechatMiniprogram.Component.DataOption, |
|
Props extends WechatMiniprogram.Component.PropertyOption, |
|
Methods extends WechatMiniprogram.Component.MethodOption |
|
>(vantOptions: VantComponentOptions<Data, Props, Methods>): void; |
|
export { VantComponent };
|
|
|