@mojir/lits
Version:
Lits is a Lisp dialect implemented in TypeScript
8 lines (7 loc) • 445 B
TypeScript
import type { FunctionReference } from '../..';
import type { VectorReductionKeys } from '../../../src/builtin/normalExpressions/categories/namespaces/vector/reductionFunctions';
import { type VectorApiName } from '../../api';
export type VectorReductionReference<T extends string> = {
[key in VectorReductionKeys<T>]: FunctionReference<'Vector'>;
};
export declare const vectorReference: Record<VectorApiName, FunctionReference<'Vector'>>;