


declare var System:any;

export class ComponentHelper
{
    static LoadComponentAsync(typeName:string, path:string)
    {
        return System.import(path).then(c => c[typeName]);
    }
}

