DefinitelyTyped/types/stringify-attributes/stringify-attributes-tests.ts
2018-12-13 17:47:55 +01:00

19 lines
334 B
TypeScript

import stringifyAttributes = require('stringify-attributes');
// $ExpectType string
stringifyAttributes({
unicorn: '🦄',
});
// $ExpectType string
stringifyAttributes({
rainbow: true,
});
// $ExpectType string
stringifyAttributes({
number: 1,
});
// $ExpectType string
stringifyAttributes({
multiple: ['a', 1],
});