DefinitelyTyped/types/ascii2mathml/ascii2mathml-tests.ts
2017-12-12 12:21:19 -08:00

18 lines
379 B
TypeScript

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