igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
48 lines (47 loc) • 1.61 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;
private static __marshalByValueAlias1;
constructor();
private gb;
get dateTimeFormat(): string;
set dateTimeFormat(a: string);
private gi;
get formatString(): string;
set formatString(a: string);
private gd;
get editorFormatString(): string;
set editorFormatString(a: string);
private f3;
get formatSpecifiers(): FormatSpecifierDescription[];
set formatSpecifiers(a: FormatSpecifierDescription[]);
private gh;
get formatOverrideRef(): string;
set formatOverrideRef(a: string);
private f8;
get showTodayButton(): boolean;
set showTodayButton(a: boolean);
private gf;
get editorType(): string;
set editorType(a: string);
private gc;
get editorDataSourceRef(): string;
set editorDataSourceRef(a: string);
private f5;
get editorDataSource(): BaseDataSourceDescription;
set editorDataSource(a: BaseDataSourceDescription);
private ge;
get editorTextField(): string;
set editorTextField(a: string);
private gg;
get editorValueField(): string;
set editorValueField(a: string);
}