appsapp-cli
Version:
This command line program is the important counterpart of appsapp-module for connecting built-in or custom backend services.
14 lines (13 loc) • 385 B
TypeScript
export declare function IsDateRange(options?: {
minDate?: Date;
maxDate?: Date;
display?: 'bubble' | 'center' | 'inline' | 'top' | 'bottom';
controls?: ['date' | 'time'];
timeFormat?: string;
steps?: {
minute?: number;
second?: number;
zeroBased?: boolean;
};
invalid?: [any];
}): (object: Object, propertyName: string) => void;