@dark-engine/platform-desktop
Version:
Dark renderer to desktop platforms like Windows, Linux, macOS via Nodegui and Qt
16 lines (15 loc) • 599 B
TypeScript
import { type QTime, type QDateTimeEditSignals, QTimeEdit } from '@nodegui/nodegui';
import { type ComponentFactory, type Ref } from '@dark-engine/core';
import type { WidgetProps, WithStandardProps } from '../shared';
export type TimeEditProps = WithStandardProps<
{
ref?: Ref<TimeEditRef>;
time: QTime;
displayFormat?: string;
} & WidgetProps
>;
export type TimeEditRef = QDarkTimeEdit;
export type TimeEditSignals = QDateTimeEditSignals;
declare const TimeEdit: ComponentFactory<TimeEditProps>;
declare class QDarkTimeEdit extends QTimeEdit {}
export { TimeEdit, QDarkTimeEdit };