Skip to content

Commit 2173ee4

Browse files
committedNov 10, 2022
fix: interfaces
1 parent a18b4d1 commit 2173ee4

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed
 

‎src/ps-web-apis.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,11 @@ export type IConfig = {
138138
[key in IApp]: IAppConfig;
139139
};
140140

141-
export type ICligV1 = (app: IApp) => Promise<{ open: (layer: ILayer) => void }>;
141+
export interface ICligV1 {
142+
init: (app: IApp) => Promise<void>;
143+
open: (layer: ILayer) => void;
144+
}
145+
export type ICligV2 = (app: IApp) => Promise<{ open: (layer: ILayer) => void }>;
142146

143147
export function whoamiV1(): Promise<WhoamiV1> {
144148
return requirePackage("whoami:v1");
@@ -151,7 +155,7 @@ export function utilsV1(): Promise<UtilsV1> {
151155
export function CligV1(): Promise<ICligV1> {
152156
return requirePackage("ppclig:v1");
153157
}
154-
export function CligV2(): Promise<ICligV1> {
158+
export function CligV2(): Promise<ICligV2> {
155159
return requirePackage("clig:v2");
156160
}
157161
export const provideApi = provide;

0 commit comments

Comments
 (0)
Please sign in to comment.