/// import { PipeTransform } from '@angular/core'; import { Coordinate } from 'ol/coordinate'; import * as i0 from "@angular/core"; /** * Transforms the given Coordinate to a string using the given string template. * The strings `{x}` and `{y}` in the template will be replaced with the first * and second coordinate values respectively. * @name nolFormat * @order 2 */ export declare class NolFormatPipe implements PipeTransform { /** * Transforms the given Coordinate to a string using the given string template. * The strings `{x}` and `{y}` in the template will be replaced with the first * and second coordinate values respectively. * @param value Coordinate. * @param template A template string with `{x}` and `{y}` placeholders that * will be replaced by first and second coordinate values. * @param fractionDigits The number of digits to include after the decimal point. * Default is `0`. * @returns Formatted coordinate. */ transform(value: Coordinate, template: string, fractionDigits?: number): string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵpipe: i0.ɵɵPipeDeclaration; }