Files
DefinitelyTyped/types/ascii2mathml/ascii2mathml-tests.ts
2017-08-20 15:37:53 -07:00

18 lines
370 B
TypeScript

import * as ascii2mathml from 'ascii2mathml';
const fn = ascii2mathml({}); // $ExpectType any
fn(''); // $ExpectType string
ascii2mathml('', {}); // $ExpectType string
// $ExpectType string
ascii2mathml('', {
decimalMark: '.',
colSep: ',',
rowSep: ';',
display: 'inline',
dir: 'ltr',
bare: false,
standalone: false,
annotate: false
});