import LocalItemCollection from "./LocalItemCollection"; export default class LocalControlsFormSelector implements Xrm.Controls.FormSelector { items: Xrm.Collection.ItemCollection; constructor() { this.items = new LocalItemCollection(); this.getCurrentItem = this.getCurrentItem.bind(this); } getCurrentItem(): Xrm.Controls.FormItem { throw new Error("Method not implemented."); } }