Skip to content

Instantly share code, notes, and snippets.

@mattpodwysocki
Created October 26, 2017 20:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattpodwysocki/3155eaaa50d0cd3aa453b4341007b8b9 to your computer and use it in GitHub Desktop.
Save mattpodwysocki/3155eaaa50d0cd3aa453b4341007b8b9 to your computer and use it in GitHub Desktop.
'use strict';
export abstract class AceOfBase {
private _eyesOpen: boolean = false;
openEyes(): void {
this._eyesOpen = true;
}
sawSign(): boolean {
return this._eyesOpen;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment