@typed-tabletop-simulator/lib
Version:
Library with some helping modules for working with Tabletop Simulator
6 lines (5 loc) • 324 B
TypeScript
/** @noSelfInFile */
export declare const range: (start: number, end?: number) => number[];
export declare const rangeInclusive: (start: number, end?: number) => number[];
export declare const shuffle: (array: any[]) => void;
export declare const applyDefaults: <T extends Record<string, any>>(source: T, defaults: T) => T;