UNPKG

ng-zorro-antd-mobile

Version:

An enterprise-class mobile UI components based on Ant Design and Angular

19 lines (18 loc) 652 B
import { OnInit, AfterViewInit } from '@angular/core'; import { PickerComponent } from '../picker/picker.component'; import { ControlValueAccessor } from '@angular/forms'; export declare class PickerViewComponent extends PickerComponent implements OnInit, AfterViewInit, ControlValueAccessor { options: any; data: Array<any>; cols: number; cascade: boolean; indicatorStyle: object; itemStyle: object; pickerViewInit(): void; init(): void; writeValue(value: any[]): void; registerOnChange(fn: (_: any[]) => void): void; registerOnTouched(fn: any[]): void; ngOnInit(): void; ngAfterViewInit(): void; }