Skip to content

Instantly share code, notes, and snippets.

View dsevillamartin's full-sized avatar
💻
Coding when possible

David Sevilla Martin dsevillamartin

💻
Coding when possible
View GitHub Profile
@devsnek
devsnek / example.js
Last active June 17, 2017 11:59
requireTypeHintedFile.js
function test(asd: number, b: number) -> number {
return asd + b;
}
function test2(x: string, y: string) -> boolean {
return true;
}
module.exports = { test, test2 };