Created
September 28, 2018 07:49
-
-
Save marcel-ploch/d11c70b8ad0fcbd7d29e8db4f82c53c3 to your computer and use it in GitHub Desktop.
DelegateModul
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
export abstract class NewUITableViewDelegateImpl { | |
static initWithOriginalDelegate(originalDelegate: UITableViewDelegate, loadMorePlayers: any): any { | |
} | |
} | |
import {NewUITableViewDelegateImpl as NewUITableViewDelegateImplBase} from './NewUITableViewDelegateImpl'; | |
export class NewUITableViewDelegateImpl { | |
initWithOriginalDelegate(): any { | |
} | |
} | |
import {NewUITableViewDelegateImpl as NewUITableViewDelegateImplBase} from './NewUITableViewDelegateImpl'; | |
export class NewUITableViewDelegateImpl extends NSObject implements UITableViewDelegate { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment