15 lines
375 B
TypeScript
15 lines
375 B
TypeScript
// just for develop
|
|
|
|
export default {
|
|
debug,
|
|
info,
|
|
warn,
|
|
error,
|
|
}
|
|
|
|
function debug(message: string, info?: Object): void { }
|
|
function info(message: string, info?: Object): void { }
|
|
function warn(message: string, info?: Object): void { }
|
|
function error(message: string, info?: Object): void { }
|
|
function getExceptionString(exception: any): string { return '' }
|