calcium-lang
Version:
Calcium language interpreter
10 lines (9 loc) • 308 B
TypeScript
import Address from "../runtime/address";
import Namespace from "../runtime/namespace";
import { InternalType } from "../type";
export default function createFunction({ address, name, params, parent, }: {
address: Address;
name: string;
params: string[];
parent: Namespace;
}): InternalType;