Server IP : 150.95.80.236 / Your IP : 3.133.148.216 Web Server : Apache System : Linux host-150-95-80-236 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64 User : social-telecare ( 10000) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/pcu.in.th/api-uat.pcu.in.th/node_modules/@nestjs/core/inspector/ |
Upload File : |
import { InjectionToken } from '@nestjs/common'; import { Edge } from './interfaces/edge.interface'; import { Entrypoint } from './interfaces/entrypoint.interface'; import { OrphanedEnhancerDefinition } from './interfaces/extras.interface'; import { Node } from './interfaces/node.interface'; import { SerializedGraphJson } from './interfaces/serialized-graph-json.interface'; import { SerializedGraphMetadata } from './interfaces/serialized-graph-metadata.interface'; export type SerializedGraphStatus = 'partial' | 'complete'; type WithOptionalId<T extends Record<'id', string>> = Omit<T, 'id'> & Partial<Pick<T, 'id'>>; export declare class SerializedGraph { private readonly nodes; private readonly edges; private readonly entrypoints; private readonly extras; private _status; private _metadata?; private static readonly INTERNAL_PROVIDERS; set status(status: SerializedGraphStatus); set metadata(metadata: SerializedGraphMetadata); insertNode(nodeDefinition: Node): Node; insertEdge(edgeDefinition: WithOptionalId<Edge>): { id: string; metadata: ({ type: "module-to-module"; } & { sourceModuleName: string; targetModuleName: string; }) | ({ type: "class-to-class"; sourceClassName: string; targetClassName: string; sourceClassToken: InjectionToken; targetClassToken: InjectionToken; injectionType: "constructor" | "property" | "decorator"; keyOrIndex?: string | number | symbol; internal?: boolean; } & { sourceModuleName: string; targetModuleName: string; }); source: string; target: string; }; insertEntrypoint<T>(definition: Entrypoint<T>, parentId: string): void; insertOrphanedEnhancer(entry: OrphanedEnhancerDefinition): void; insertAttachedEnhancer(nodeId: string): void; getNodeById(id: string): Node; toJSON(): SerializedGraphJson; toString(): string; private generateUuidByEdgeDefinition; } export {};