ng-zorro-antd-mobile
Version:
An enterprise-class mobile UI components based on Ant Design and Angular
11 lines (10 loc) • 512 B
TypeScript
import { ComponentRef } from '@angular/core';
import { PickerComponent } from './picker.component';
import { PickerCallBack, PickerOptions } from './picker-options.provider';
import { PopupService } from '../core/services/popup.service';
export declare class PickerService extends PopupService {
comRef: ComponentRef<PickerComponent>;
defaultOptions: PickerOptions;
showPicker(config?: PickerOptions, confirmCallback?: PickerCallBack, cancelCallback?: PickerCallBack): any;
hidePicker(): void;
}