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

StringDistribution

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

A function to use an Engine to produce a string of a requested length

type StringDistribution = (engine: Engine, length: number) => string;

§Type

§
(engine: Engine, length: number) => string
[src]