Skip to content

Instantly share code, notes, and snippets.

@marcel-ploch
Created September 28, 2018 07:49
Show Gist options
  • Save marcel-ploch/d11c70b8ad0fcbd7d29e8db4f82c53c3 to your computer and use it in GitHub Desktop.
Save marcel-ploch/d11c70b8ad0fcbd7d29e8db4f82c53c3 to your computer and use it in GitHub Desktop.
DelegateModul
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