4 lines
180 B
TypeScript
4 lines
180 B
TypeScript
import { PRNG } from "./types.js";
|
|
export declare function randomChar(prng: PRNG): string;
|
|
export declare function replaceCharAt(str: string, index: number, char: string): string;
|