import {iscope} from '../ai'; import common, {ICommon} from './common'; import * as lang from '../lang'; export interface IComponent extends ICommon {} export default function(scope: iscope): IComponent { return lang.mixin({}, common(scope)); }