DefinitelyTyped/types/badgen/badgen-tests.ts
2019-01-22 10:51:37 +09:00

25 lines
395 B
TypeScript

import badgen from 'badgen';
// $ExpectType string
badgen({
subject: 'SUBJECT',
status: 'STATUS'
});
// $ExpectType string
badgen({
subject: 'SUBJECT',
status: 'STATUS',
color: 'green'
});
// $ExpectType string
badgen({
subject: 'SUBJECT',
status: 'STATUS',
color: '#FF0000',
style: 'flat',
icon: 'data:image/svg+xml;base64,...',
iconWidth: 20
});