com.phloxui
Version:
PhloxUI Ng2+ Framework
10 lines (9 loc) • 334 B
TypeScript
import { IFormatter } from '../share/formatter/IFormatter';
export interface IHasFormatter {
getFormatterName(): string;
setFormatterName(formatterName: string): void;
getFormatterOptions(): any;
setFormatterOptions(options: any): void;
getFormatter(): IFormatter;
setFormatter(formatter: IFormatter): void;
}