ng-zorro-antd-mobile
Version:
An enterprise-class mobile UI components based on Ant Design and Angular
17 lines (16 loc) • 696 B
TypeScript
import { ComponentRef, ComponentFactory, ApplicationRef, ComponentFactoryResolver } from '@angular/core';
import { CustomKeyboardComponent } from '../custom-keyboard/custom-keyboard.component';
export declare class CustomInputService {
private _appRef;
private _cfr;
static compRef: ComponentRef<any>;
static appRef: ApplicationRef;
static isShow: boolean;
static clickValue: any;
static _inputCompFactory: ComponentFactory<CustomKeyboardComponent>;
static _keyboardPrefixCls: string;
constructor(_appRef: ApplicationRef, _cfr: ComponentFactoryResolver);
static getShowStatus(): boolean;
static showKeyboard(): void;
static hideKeyboard(): void;
}