Skip to content

Instantly share code, notes, and snippets.

View lukescott's full-sized avatar

Luke Scott lukescott

View GitHub Profile
@lukescott
lukescott / openzwave-shared.d.ts
Created December 28, 2018 16:15
openzwave-shared.d.ts
declare module "openzwave-shared" {
namespace ZWave {
export type ValueType =
| "bool"
| "byte"
| "decimal"
| "int"
| "list"
| "schedule"
| "short"
<!DOCTYPE html>
<html>
<head>
<title>jspad.net</title>
</head>
<body>
<script>
console.log("Hello World");
</script>
</body>
@lukescott
lukescott / gist:36453a75c39c539f5c7d
Last active February 12, 2024 00:00
Traits in ES6 now
/*
var Trait1 = {
method1() {}
};
var Trait2 = {
method2() {}
};
var Trait3 = mixin({