DefinitelyTyped/printf/printf-tests.ts
Aluísio Augusto Silva Gonçalves 253d42273d Add type definitions for 'printf' (#14821)
* Add definitions for 'printf'

* Add "lib" to tsconfig.json

* Fix link
2017-03-10 15:18:53 -08:00

10 lines
272 B
TypeScript

import printf = require("printf");
printf('%c', 0x7f).charCodeAt(0);
printf('%2$s: %1$O', {hello: 'Node'}, 'Test');
printf('%(temperature)s %(crevace)ss', {
temperature: 'Hot',
crevace: 'Pocket',
});
printf(process.stdout, '%2$s: %1$O', {hello: 'Node'}, 'Test');