@ctodev/cclibrary-typings
Version:
Library typings for use with CLARC INFINITY
9 lines (8 loc) • 384 B
TypeScript
import { PipeTransform } from '@angular/core';
import { TccResolveIdsService } from '../../services/tcc-resolve-ids/tcc-resolve-ids.service';
import { Observable } from 'rxjs';
export declare class TccResolveIdsPipe implements PipeTransform {
private service;
constructor(service: TccResolveIdsService);
transform(id: string, UseOnlyName?: boolean): Observable<string>;
}