@prozilla-os/core 1.3.10 → 1.3.11

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.
package/dist/main.d.ts CHANGED
@@ -187,7 +187,7 @@ export declare class AppsConfig {
187
187
  browser: string;
188
188
  };
189
189
  constructor(options?: Partial<AppsConfigOptions>);
190
- get installedApps(): App<any>[];
190
+ get installedApps(): App<WindowProps>[];
191
191
  /**
192
192
  * @param includeUninstalled Include apps that are not currently installed
193
193
  */
@@ -210,7 +210,7 @@ declare interface AppsConfigOptions {
210
210
  /**
211
211
  * An array of applications
212
212
  */
213
- apps: App<any>[];
213
+ apps: App<WindowProps>[];
214
214
  }
215
215
 
216
216
  export declare function Button({ className, href, children, icon, target, ...props }: ButtonProps): JSX_2.Element;