This commit is contained in:
2017-06-09 14:59:36 +02:00
parent 58203b2b74
commit 508869fa33
14 changed files with 402 additions and 0 deletions

8
ts/index.ts Normal file
View File

@ -0,0 +1,8 @@
import * as plugins from './smarterror.plugins'
export class SmartError extends Error {
name = 'SmartError'
constructor (errorMessageArg: string) {
super(errorMessageArg)
}
}

1
ts/smarterror.plugins.ts Normal file
View File

@ -0,0 +1 @@
import 'typings-global'