@dpuse/dpuse-shared 0.3.633 → 0.3.635
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -7,7 +7,7 @@ import { Component, ComponentConfig, ComponentReference } from '../..';
|
|
|
7
7
|
export { contextConfigSchema } from './contextConfig.schema';
|
|
8
8
|
export interface ContextInterface extends Component {
|
|
9
9
|
readonly config: ContextConfig;
|
|
10
|
-
listContextFocuses?(context: ContextInterface, options?: ListContextOptions): Promise<
|
|
10
|
+
listContextFocuses?(context: ContextInterface, options?: ListContextOptions): Promise<ListContextResult>;
|
|
11
11
|
}
|
|
12
12
|
export type ContextConfig = InferOutput<typeof contextConfigSchema>;
|
|
13
13
|
export interface ContextConfig1 extends ModuleConfig {
|
|
@@ -25,6 +25,6 @@ export type ContextModelGroupLocalisedConfig = Localised<ContextModelGroupConfig
|
|
|
25
25
|
export interface ListContextOptions extends EngineContextActionOptions {
|
|
26
26
|
placeholder: unknown;
|
|
27
27
|
}
|
|
28
|
-
export interface
|
|
28
|
+
export interface ListContextResult {
|
|
29
29
|
models: ContextModelGroupConfig[];
|
|
30
30
|
}
|
package/package.json
CHANGED