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