/*! * devextreme-angular-test * Version: 17.2.8 * Build date: Mon Feb 05 2018 * * Copyright (c) 2012 - 2018 Developer Express Inc. ALL RIGHTS RESERVED * * This software may be modified and distributed under the terms * of the MIT license. See the LICENSE file in the root of the project for details. * * https://github.com/DevExpress/devextreme-angular */ import { NestedOption } from '../../../core/nested-option'; export abstract class DxoFormat extends NestedOption { get currency(): string { return this._getOption('currency'); } set currency(value: string) { this._setOption('currency', value); } get formatter(): Function { return this._getOption('formatter'); } set formatter(value: Function) { this._setOption('formatter', value); } get parser(): Function { return this._getOption('parser'); } set parser(value: Function) { this._setOption('parser', value); } get precision(): number { return this._getOption('precision'); } set precision(value: number) { this._setOption('precision', value); } get type(): string { return this._getOption('type'); } set type(value: string) { this._setOption('type', value); } }