This commit is contained in:
2016-10-15 19:00:52 +02:00
commit 42eda7bbf2
6 changed files with 109 additions and 0 deletions

21
ts/index.ts Normal file
View File

@ -0,0 +1,21 @@
import 'typings-global'
export registerLogger = () => {
}
export error = (logString: string) => {
console.error(logString)
}
export info = (logString: string) => {
console.info()
}
export log = (logString: string) => {
console.log(logString)
}
export warn = (logString: string) => {
console.warn(logString)
}