MCPcopy
hub / github.com/discordjs/discord.js / Step

Interface Step

packages/voice/src/audio/TransformerGraph.ts:205–220  ·  view source on GitHub ↗

* Represents a step in the path from node A to node B.

Source from the content-addressed store, hash-verified

203 * Represents a step in the path from node A to node B.
204 */
205interface Step {
206 /**
207 * The cost of the steps after this step.
208 */
209 cost: number;
210
211 /**
212 * The edge associated with this step.
213 */
214 edge?: Edge;
215
216 /**
217 * The next step.
218 */
219 next?: Step;
220}
221
222/**
223 * Finds the shortest cost path from node A to node B.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…