Hi! I'm trying to define interface in which one method (initPage) needs to have different arguments in every implementation. How can I do this? Using ...args for me is not good, because I'm loosing strong type checking.
public interface IPage {
function initPage(...args):void;
function showPage():void;
function hidePage():void;
function removePage():void;
}