UNPKG

233 BTypeScriptView Raw
1import clamp from "./clamp";
2import inRange from "./inRange";
3import random from "./random";
4
5declare const defaultExport: {
6 clamp: typeof clamp;
7 inRange: typeof inRange;
8 random: typeof random;
9};
10export default defaultExport;