Created
July 4, 2016 08:28
-
-
Save asido/47bbf72831cc56a8159a1068f007139c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let MyClassRecord = Immutable.Record({ | |
property: 'defaultValue', | |
index: 0, | |
works: true, | |
valueList: Immutable.List<string>([]) | |
}); | |
export class MyClass extends MyClassRecord { | |
property:string; | |
index:number; | |
truth:boolean; | |
valueList:Immutable.List<string> | |
} | |
let c = new MyClass(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment