diff --git a/typescript/case/trigger/trigger.text.select.ts b/typescript/case/trigger/trigger.text.select.ts index 081f0e917..5f0b6e2b2 100644 --- a/typescript/case/trigger/trigger.text.select.ts +++ b/typescript/case/trigger/trigger.text.select.ts @@ -2,4 +2,9 @@ import { Trigger } from "../../base/single/trigger/trigger"; export declare class SelectTextTrigger extends Trigger { static xtype: string; + + props: { + items: any[]; + text: string | Function; + } & Trigger['props']; } diff --git a/typescript/shims-tsx.ts b/typescript/shims-tsx.ts index 47854e9e1..8c8da9431 100644 --- a/typescript/shims-tsx.ts +++ b/typescript/shims-tsx.ts @@ -44,7 +44,7 @@ interface ElementClassProps extends UIProps { $testId: string; $point: any; $value: any; - $scope: () => any; + $scope: any; beforeRender(callback: () => void): void; beforeInit(callback: () => void): void;