DefinitelyTyped/types/prometheus-gc-stats/prometheus-gc-stats-tests.ts

12 lines
241 B
TypeScript

import gcStats = require('prometheus-gc-stats');
const testFunc = gcStats('something');
// $ExpectType void
testFunc();
const testFuncWithConfig = gcStats('something', {
prefix: 'prefix_',
});
// $ExpectType void
testFuncWithConfig();