// Typescript file for core.console in:
// https://github.com/freedomjs/freedom/blob/master/interface/core.console.json
///
declare module freedom_Console {
interface Console {
log(source:string, message:string) : Promise;
debug(source:string, message:string) : Promise;
info(source:string, message:string) : Promise;
warn(source:string, message:string) : Promise;
error(source:string, message:string) : Promise;
}
}