@ctodev/cclibrary-typings
Version:
Library typings for use with CLARC INFINITY
9 lines (8 loc) • 422 B
TypeScript
import { PipeTransform } from '@angular/core';
import { TccTranslation } from '../../../odata/models/shared.model';
import { TccAuthService } from '../../../odata/services/tcc-auth/tcc-auth.service';
export declare class TccTranslationPipe implements PipeTransform {
private authservice;
constructor(authservice: TccAuthService);
transform(value: TccTranslation | string | number, Default?: string): string;
}