Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Engine

import type { Engine } from "https://git.sr.ht/~ruivieira/deno-experiments/blob/master/randomjs/mod.ts";

A mechanism to retrieve random int32 values

interface Engine {
next(): number;
}

§Methods