ng-zorro-antd-mobile
Version:
An enterprise-class mobile UI components based on Ant Design and Angular
29 lines (28 loc) • 715 B
TypeScript
import { Models } from '../date/DataTypes';
export interface ConfirmPanelPropsType {
type?: 'one' | 'range';
locale: Models.Locale;
onlyConfirm?: boolean;
disableBtn?: boolean;
startDateTime?: Date;
endDateTime?: Date;
formatStr?: string;
onConfirm: () => void;
}
export declare class ConfirmPanelComponent {
props: ConfirmPanelPropsType;
startTimeStr: string;
endTimeStr: string;
btnCls: string;
propsData: any;
disableBtn: any;
formatStr: any;
startDateTime: any;
endDateTime: any;
onConfirm: any;
confirmPane: boolean;
constructor();
formatTime(): void;
triggerConfirm: () => void;
selfFormatDate(date: Date): string;
}