@ctodev/cclibrary-typings
Version:
Library typings for use with CLARC INFINITY
10 lines (9 loc) • 540 B
TypeScript
import { PipeTransform } from '@angular/core';
import { TccSubpathTree } from '../tcc-subpath-tree.component';
import { TccC4Node } from '../../../../odata/models/shared.model';
import { TccTranslationPipe } from '../../../pipes/tcc-translation/tcc-translation.pipe';
export declare class GetTooltipPipe implements PipeTransform {
private translationPipe;
constructor(translationPipe: TccTranslationPipe);
transform(node: TccSubpathTree.TreeNode, setTooltipFunction?: (Entity: TccC4Node) => string, refresh?: number): string;
}