UNPKG

@dark-engine/platform-desktop

Version:

Dark renderer to desktop platforms like Windows, Linux, macOS via Nodegui and Qt

16 lines (15 loc) 599 B
import { type QDate, type QDateTimeEditSignals, QDateEdit } from '@nodegui/nodegui'; import { type ComponentFactory, type Ref } from '@dark-engine/core'; import type { WidgetProps, WithStandardProps } from '../shared'; export type DateEditProps = WithStandardProps< { ref?: Ref<DateEditRef>; date: QDate; displayFormat?: string; } & WidgetProps >; export type DateEditRef = QDarkDateEdit; export type DateEditSignals = QDateTimeEditSignals; declare const DateEdit: ComponentFactory<DateEditProps>; declare class QDarkDateEdit extends QDateEdit {} export { DateEdit, QDarkDateEdit };