UNPKG

twing

Version:

First-class Twig engine for the JavaScript ecosystem

15 lines (14 loc) 412 B
import { TwingCallable, TwingSynchronousCallable } from "../../../callable-wrapper"; type Range<V = any> = TwingCallable<[ low: V, high: V, step: number ], Map<number, V>>; export declare const range: Range; type SynchronousRange<V = any> = TwingSynchronousCallable<[ low: V, high: V, step: number ], Map<number, V>>; export declare const rangeSynchronously: SynchronousRange; export {};