webpack-subresource-integrity
Version:
Webpack plugin for enabling Subresource Integrity
13 lines • 529 B
TypeScript
/**
* Copyright (c) 2015-present, Waysact Pty Ltd
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import type { Graph, StronglyConnectedComponent } from "./types";
/**
* Tarjan's strongly connected components algorithm
* https://en.wikipedia.org/wiki/Tarjan%27s_strongly_connected_components_algorithm
*/
export declare function createDAGfromGraph<T>(graph: Graph<T>): Graph<StronglyConnectedComponent<T>>;
//# sourceMappingURL=scc.d.ts.map