@appsemble/types 0.20.25 → 0.20.27
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 +4 -4
- package/index.d.ts +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
#  Appsemble Types
|
|
2
2
|
|
|
3
3
|
> Reusable TypeScript types
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@appsemble/types)
|
|
6
|
-
[](https://gitlab.com/appsemble/appsemble/-/releases/0.20.27)
|
|
7
|
+
[](https://codecov.io/gl/appsemble/appsemble)
|
|
8
8
|
[](https://prettier.io)
|
|
9
9
|
|
|
10
10
|
## Installation
|
|
@@ -21,5 +21,5 @@ not guaranteed.
|
|
|
21
21
|
|
|
22
22
|
## License
|
|
23
23
|
|
|
24
|
-
[LGPL-3.0-only](https://gitlab.com/appsemble/appsemble/-/blob/0.20.
|
|
24
|
+
[LGPL-3.0-only](https://gitlab.com/appsemble/appsemble/-/blob/0.20.27/LICENSE.md) ©
|
|
25
25
|
[Appsemble](https://appsemble.com)
|
package/index.d.ts
CHANGED
|
@@ -821,7 +821,7 @@ export interface ShareActionDefinition extends BaseActionDefinition<'share'> {
|
|
|
821
821
|
*/
|
|
822
822
|
title?: Remapper;
|
|
823
823
|
}
|
|
824
|
-
type StorageType = 'indexedDB' | 'localStorage' | 'sessionStorage';
|
|
824
|
+
export type StorageType = 'appStorage' | 'indexedDB' | 'localStorage' | 'sessionStorage';
|
|
825
825
|
export interface StorageAppendActionDefinition extends BaseActionDefinition<'storage.append'> {
|
|
826
826
|
/**
|
|
827
827
|
* The key of the entry to write to the app’s storage.
|
package/index.ts
CHANGED
|
@@ -972,7 +972,7 @@ export interface ShareActionDefinition extends BaseActionDefinition<'share'> {
|
|
|
972
972
|
title?: Remapper;
|
|
973
973
|
}
|
|
974
974
|
|
|
975
|
-
type StorageType = 'indexedDB' | 'localStorage' | 'sessionStorage';
|
|
975
|
+
export type StorageType = 'appStorage' | 'indexedDB' | 'localStorage' | 'sessionStorage';
|
|
976
976
|
|
|
977
977
|
export interface StorageAppendActionDefinition extends BaseActionDefinition<'storage.append'> {
|
|
978
978
|
/**
|