UNPKG

@typedly/symbol

Version:

A TypeScript type definitions package for various symbols.

7 lines (6 loc) 282 B
import { AlgebraicSymbol, ArithmeticSymbol, GeometrySymbol, RelationalSymbol, SetTheorySymbol } from "."; /** * @description The type of math symbols. * @export */ export type MathSymbol = AlgebraicSymbol | ArithmeticSymbol | GeometrySymbol | RelationalSymbol | SetTheorySymbol;