Closed Akryum closed 4 years ago
Fix a typing issue that causes this to throw a typing error on consola.green:
consola.green
// @ts-check const consola = require('consola') consola.green('foo')
Workaround:
// globals.d.ts import { Consola } from 'consola' declare module 'consola' { export = new Consola() }
I had to revert this PR as of #88. ==> #89
:|
Fix a typing issue that causes this to throw a typing error on
consola.green
: