mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
18 lines
379 B
TypeScript
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
|
|
});
|