.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / loglevel / test / type-test.ts
1 import * as log from '..';
2
3 log.setLevel('warn');
4 log.warn('Test warning');
5
6 // CoreJS defines a global `log` variable. We need to make sure that
7 // that doesn't conflict with the loglevel typings:
8 import * as _coreJS from 'core-js';