UNPKG

calcium-lang

Version:
6 lines (5 loc) 184 B
import { InternalType } from "../type"; export default function createIterator({ name, next, }: { name: string; next: (index: number) => InternalType | null; }): InternalType;