6 lines
243 B
TypeScript
6 lines
243 B
TypeScript
import { PipeTransform } from '@angular/core';
|
|
import * as moment from 'moment';
|
|
export declare class FromUtcPipe implements PipeTransform {
|
|
transform(value: moment.MomentInput, formats?: string | string[], ...args: string[]): any;
|
|
}
|