omim
Version:
Material Design for Omi.
33 lines (32 loc) • 812 B
TypeScript
import Picker from './md-date-time-picker/js/mdDateTimePicker';
import { WeElement } from 'omi';
import '../theme.ts';
interface Props {
show?: boolean;
type?: string;
init?: string;
past?: string;
future?: string;
lan?: string;
}
export default class DateTimePicker extends WeElement<Props> {
static css: any;
static defaultProps: {
type: string;
show: boolean;
};
install(): void;
static propTypes: {
type: StringConstructor;
show: BooleanConstructor;
init: StringConstructor;
past: StringConstructor;
future: StringConstructor;
lan: StringConstructor;
};
receiveProps(props: any, pre: any): boolean;
picker: Picker;
installed(): void;
render(props: any): JSX.Element;
}
export {};