DefinitelyTyped/types/asciify/asciify-tests.ts
2017-03-24 14:27:52 -07:00

9 lines
304 B
TypeScript

import asciify = require('asciify');
asciify('Whoa', function(err, result){console.log(result)});
asciify('Whoa', '3-d', function(err, result){console.log(result)});
asciify('Whoa', {font:'3-d'}, function(err, result){console.log(result)});
asciify.getFonts(function(err, fonts) { fonts.slice(0); });