@types/cwise-parser
v1.0.4
Published
TypeScript definitions for cwise-parser
Readme
Installation
npm install --save @types/cwise-parser
Summary
This package contains type definitions for cwise-parser (https://github.com/scijs/cwise-parser#readme).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cwise-parser.
index.d.ts
declare namespace cwise_parser {
interface CompiledArgument {
name: string;
lvalue: boolean;
rvalue: boolean;
count: number;
}
interface CompiledRoutine {
body: string;
args: CompiledArgument[];
thisVars: string[];
localVars: string[];
}
}
declare function cwise_parser<T>(func: (a: number, ...args: T[]) => any): cwise_parser.CompiledRoutine;
export = cwise_parser;
Additional Details
- Last updated: Wed, 10 Jun 2026 20:17:46 GMT
- Dependencies: none
Credits
These definitions were written by taoqf.
