Created
June 14, 2016 06:00
-
-
Save bcherny/81a016bfcd243652d15ee541c8e2be13 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
angular.module('foo').factory('MyModal', function(Modal) { | |
return class MyModal extends Modal { | |
constructor(message: string) { | |
const options = { | |
message, | |
height: 400, | |
width: 600 | |
} | |
super(options) | |
} | |
} | |
}) | |
import {Modal} from './interfaces' | |
export interface MyModal extends Modal { | |
new(message: string): this | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment