Interface DLLs
Hierarchy
- DLLs
Indexable
Each field declares one DLL
-
Readonly functions: object
A set of functions that should be exposed to the calculator
-
[functionName: string]: ["double" | "int", readonly ("double" | "int" | "string")[]]
each function declaration includes its name and a call signature. The signature is a tuple with two items. The first item is a name of the return type, the second item is an array of type names of arguments. Currently supported type names are
int
,double
andstring
.
-
-
Readonly path: string
A path to the DLL. The application searches the DLL according to DLL Search Order
Generated using TypeDoc
Specifies a set of DLLs for importing and exposing to
Calculator.dlls
. See an example