UNPKG

@tangential/configurable-input-widgets

Version:

Input Widgets with persistable, dynamic configuration.

15 lines (14 loc) 598 B
import { Jsonified } from '@tangential/core'; import { ConfigurableInputIval, ConfigurableInputIvalJson } from '../configurable-input-ival'; export interface DateTimeIvalIF extends ConfigurableInputIvalJson { value?: number; recordedInTimeZone?: string; } export declare class DateTimeIval extends ConfigurableInputIval implements Jsonified<DateTimeIval, DateTimeIvalIF>, DateTimeIvalIF { static $model: DateTimeIvalIF; value: number; recordedInTimeZone: string; constructor(config?: DateTimeIvalIF, key?: string); get uiValue(): string; set uiValue(val: string); }