igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
47 lines (46 loc) • 1.56 kB
TypeScript
import { DataGridColumnDescription } from "./DataGridColumnDescription";
import { FormatSpecifierDescription } from "./FormatSpecifierDescription";
import { BaseDataSourceDescription } from "./BaseDataSourceDescription";
import { Type } from "./type";
/**
* @hidden
*/
export declare class DateTimeColumnDescription extends DataGridColumnDescription {
static $t: Type;
protected get_type(): string;
private static __canMarshalByValue1;
constructor();
private fl;
get dateTimeFormat(): string;
set dateTimeFormat(a: string);
private fs;
get formatString(): string;
set formatString(a: string);
private fn;
get editorFormatString(): string;
set editorFormatString(a: string);
private fe;
get formatSpecifiers(): FormatSpecifierDescription[];
set formatSpecifiers(a: FormatSpecifierDescription[]);
private fr;
get formatOverrideRef(): string;
set formatOverrideRef(a: string);
private fj;
get showTodayButton(): boolean;
set showTodayButton(a: boolean);
private fp;
get editorType(): string;
set editorType(a: string);
private fm;
get editorDataSourceRef(): string;
set editorDataSourceRef(a: string);
private fg;
get editorDataSource(): BaseDataSourceDescription;
set editorDataSource(a: BaseDataSourceDescription);
private fo;
get editorTextField(): string;
set editorTextField(a: string);
private fq;
get editorValueField(): string;
set editorValueField(a: string);
}