extension 3.2.0-next.8 → 3.2.0

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/README.md CHANGED
@@ -40,13 +40,13 @@ npm run dev
40
40
 
41
41
  ## Web standards and framework support
42
42
 
43
- <!-- For a preview of extensions running these technologies, see the [templates](https://templates.extension.land) website. -->
43
+ <!-- For a preview of extensions running these technologies, see the [templates](https://templates.extension.dev) website. -->
44
44
 
45
45
  <div align="center">
46
46
 
47
47
  | <img src="https://github.com/cezaraugusto/extension.js/assets/4672033/a9e2541a-96f0-4caa-9fc9-5fc5c3e901c8" width="70"> | <img src="https://github.com/cezaraugusto/extension.js/assets/4672033/b42c5330-9e2a-4045-99c3-1f7d264dfaf4" width="70"> | <img src="https://github.com/cezaraugusto/extension.js/assets/4672033/f19edff3-9005-4f50-b05c-fba615896a7f" width="70"> | <img src="https://github.com/cezaraugusto/extension.js/assets/4672033/ff64721d-d145-4213-930d-e70193f8d57e" width="70"> | <img src="https://github.com/cezaraugusto/extension.js/assets/4672033/15f1314a-aa65-4ce2-a3f3-cf53c4f730cf" width="70"> | <img src="https://github.com/cezaraugusto/extension.js/assets/4672033/de1082fd-7cf6-4202-8c12-a5c3cd3e5b42" width="70"> | <img src="https://github.com/cezaraugusto/extension.js/assets/4672033/8807efd9-93e5-4db5-a1d2-9ac524f7ecc2" width="70"> |
48
48
  | :---------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------: |
49
- | ESNext<br>[Try out](https://templates.extension.land/javascript) | TypeScript<br>[Try out](https://templates.extension.land/typescript) | WASM<br>(soon) | React<br>[Try out](https://templates.extension.land/react) | Vue<br>[Try out](https://templates.extension.land/vue) | Svelte<br>[Try out](https://templates.extension.land/svelte) | Preact<br>[Try out](https://templates.extension.land/preact) |
49
+ | ESNext<br>[Try out](https://templates.extension.dev/javascript) | TypeScript<br>[Try out](https://templates.extension.dev/typescript) | WASM<br>(soon) | React<br>[Try out](https://templates.extension.dev/react) | Vue<br>[Try out](https://templates.extension.dev/vue) | Svelte<br>[Try out](https://templates.extension.dev/svelte) | Preact<br>[Try out](https://templates.extension.dev/preact) |
50
50
 
51
51
  </div>
52
52
 
@@ -1 +1,4 @@
1
- export default function checkUpdates(): Promise<string | null>;
1
+ export default function checkUpdates(): Promise<{
2
+ suffix: string;
3
+ message: string;
4
+ } | null>;
@@ -19,7 +19,10 @@ export declare function unhandledError(err: unknown): string;
19
19
  export declare function updateFailed(err: any): string;
20
20
  export declare function checkUpdates(packageJson: Record<string, any>, update: {
21
21
  latest: string;
22
- }): string;
22
+ }): {
23
+ suffix: string;
24
+ message: string;
25
+ };
23
26
  export declare function unsupportedNodeVersion(): string;
24
27
  export declare function noURLWithoutStart(argument: string): string;
25
28
  export declare function notImplemented(argument: string): string;