UNPKG

fignumbers

Version:

A comprehensive TypeScript library for generating figurate numbers across multiple dimensions

7 lines 393 B
import type { StepConfig } from "../../core/types/ConfigTypes.js"; import type { INumberGeneratorStrategy } from "../../core/interfaces/INumberGeneratorStrategy.js"; export type CubicConfig = StepConfig; export declare class CubicGenerator implements INumberGeneratorStrategy<CubicConfig> { generate({ step }: CubicConfig): Generator<bigint>; } //# sourceMappingURL=CubicGenerator.d.ts.map