UNPKG
nerdamer-ts
Version:
latest (1.2.0)
1.2.0
javascript light-weight symbolic math expression evaluator
nerdamer.com
mugabe/nerdamer
nerdamer-ts
/
dist
/
Functions
/
Core
/
operations
/
multiply.d.ts
9 lines
(8 loc)
•
241 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
/** * Gets called when the parser finds the * operator. See this.add *
@param
{
Symbol
}
a
*
@param
{
Symbol
}
b
*
@returns
{
Symbol
} */
export
function
multiply
(
a:
Symbol
, b:
Symbol
):
Symbol
;
import
{
Symbol
}
from
"../../../Types/Symbol"
;