DefinitelyTyped/types/isaac/index.d.ts
2018-09-21 21:14:05 +02:00

12 lines
456 B
TypeScript

// Type definitions for isaac 0.0
// Project: https://github.com/StefanoBalocco/isaac.js
// Definitions by: Martin Olsson <https://github.com/mo>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export function internals(): any;
export function prng(n: number): void;
export function rand(): number;
export function random(): number;
export function reset(): void;
export function seed(s: string | number | ReadonlyArray<number>): void;