Remove unused file

This commit is contained in:
Godfrey Chan 2018-06-15 16:42:19 -07:00
parent af2042154e
commit 358f12ae18
1 changed files with 0 additions and 13 deletions

13
console.d.ts vendored
View File

@ -1,13 +0,0 @@
interface ConsoleClass {
new(): Console;
}
interface Console {
log(message: string): void;
}
// 1. Get init running
// 2. Export a global variable (number)
// 3. Make a module / class
// 4. Create a method that expects a simple type and does work (log(RubyString))
// 5. Have the Rust code (safely) call back into Ruby to get the type it needs