(pathString: string, supportedTypes?: PathType[])
| 87 | } |
| 88 | |
| 89 | async getNode(pathString: string, supportedTypes?: PathType[]): Promise<NodeEntity> { |
| 90 | const path = this.getPath(pathString, supportedTypes); |
| 91 | return await path.getNode(); |
| 92 | } |
| 93 | |
| 94 | getPath(path: string, supportedTypes?: PathType[], unsupportedTypeMessage?: string): Path { |
| 95 | const p = new Path(this.sdk, this.photosSdk, path, this.eventsManager); |