UNPKG

serverless-spy

Version:

CDK-based library for writing elegant integration tests on AWS serverless architecture and an additional web console to monitor events in real time.

23 lines (19 loc) 470 B
/** * Mnemonist StaticDisjointSet Typings * ==================================== */ import {ArrayLike} from './utils/types'; export default class StaticDisjointSet { // Members dimension: number; size: number; // Constructor constructor(size: number); // Methods find(x: number): number; union(x: number, y: number): this; connected(x: number, y: number): boolean; mapping(): ArrayLike; compile(): Array<Array<number>>; inspect(): any; }