added hal serializer

This commit is contained in:
Art Lowel
2017-02-14 09:51:13 +01:00
parent b8ee768d0e
commit adc79e957f
15 changed files with 833 additions and 2 deletions

7
src/typings.d.ts vendored
View File

@@ -71,3 +71,10 @@ interface WebpackRequire {
interface NodeRequire extends WebpackRequire { }
interface NodeModule extends WebpackModule { }
interface Global extends GlobalEnvironment { }
// Allows us to import json files in typescript
// See https://hackernoon.com/import-json-into-typescript-8d465beded79#.88tfoy2df
declare module "*.json" {
const value: any;
export default value;
}