Last active
August 29, 2015 14:26
-
-
Save spion/65e1f98b168be67daefe to your computer and use it in GitHub Desktop.
replacement "Void" type for TS
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
class Void { | |
private "constructor": Void; | |
private toString() {} | |
private toLocaleString() {} | |
private valueOf() {} | |
private hasOwnProperty(v: string) {} | |
private isPrototypeOf(v: Object) {} | |
private propertyIsEnumerable(v: string) {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment