@types/cwise-parser
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

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: Mon, 06 Nov 2023 22:41:05 GMT
  • Dependencies: none

Credits

These definitions were written by taoqf.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/cwise-parser

Weekly Downloads

270

Version

1.0.3

License

MIT

Unpacked Size

3.44 kB

Total Files

5

Last publish

Collaborators

  • types