@dark-engine/platform-desktop
Version:
Dark renderer to desktop platforms like Windows, Linux, macOS via Nodegui and Qt
17 lines (16 loc) • 676 B
TypeScript
import { QDateTimeEdit, type QTime, type QDate, type QDateTimeEditSignals } from '@nodegui/nodegui';
import { type ComponentFactory, type Ref } from '@dark-engine/core';
import type { WidgetProps, WithStandardProps } from '../shared';
export type DateTimeEditProps = WithStandardProps<
{
ref?: Ref<DateTimeEditRef>;
date: QDate;
time: QTime;
displayFormat?: string;
} & WidgetProps
>;
export type DateTimeEditRef = QDarkDateTimeEdit;
export type DateTimeEditSignals = QDateTimeEditSignals;
declare const DateTimeEdit: ComponentFactory<DateTimeEditProps>;
declare class QDarkDateTimeEdit extends QDateTimeEdit {}
export { DateTimeEdit, QDarkDateTimeEdit };