/// ////export interface iBaseScope { //// watch: () => void; ////} ////export interface iMover { //// moveUp: () => void; ////} ////export interface iScope extends iBaseScope, iMover { //// family: TModel; ////} ////var x: iScope; ////x./**/ verify.completions({ marker: "", exact: [ { name: "family", text: "(property) iScope.family: number" }, { name: "watch", text: "(property) iBaseScope.watch: () => void" }, { name: "moveUp", text: "(property) iMover.moveUp: () => void" }, ], });