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.
9 lines
409 B
9 lines
409 B
3 years ago
|
/// <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 };
|