@ts-core/angular 15.0.39 → 15.0.41
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/esm2020/VIModule.mjs +2 -2
- package/esm2020/asset/AssetModule.mjs +4 -3
- package/esm2020/language/LanguageModule.mjs +5 -4
- package/esm2020/notification/NotificationService.mjs +1 -1
- package/esm2020/storage/DateValueStorage.mjs +15 -2
- package/esm2020/storage/IValueStorage.mjs +1 -1
- package/esm2020/storage/ValueStorage.mjs +2 -1
- package/fesm2015/ts-core-angular.mjs +20 -5
- package/fesm2015/ts-core-angular.mjs.map +1 -1
- package/fesm2020/ts-core-angular.mjs +20 -5
- package/fesm2020/ts-core-angular.mjs.map +1 -1
- package/package.json +1 -1
- package/storage/DateValueStorage.d.ts +1 -0
- package/storage/IValueStorage.d.ts +1 -1
- package/storage/ValueStorage.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ValueStorage } from './ValueStorage';
|
|
2
2
|
export declare class DateValueStorage extends ValueStorage<Date> {
|
|
3
|
+
defaultExpirationDelta: number;
|
|
3
4
|
protected serialize(value: string): Date;
|
|
4
5
|
protected deserialize(value: Date): string;
|
|
5
6
|
isMore(item: Date): boolean;
|
|
@@ -11,7 +11,7 @@ export declare class ValueStorage<T = string> extends DestroyableContainer imple
|
|
|
11
11
|
protected deserialize(value: T): string;
|
|
12
12
|
get(defaultValue?: T): T;
|
|
13
13
|
has(): boolean;
|
|
14
|
-
set(value: T):
|
|
14
|
+
set(value: T): T;
|
|
15
15
|
destroy(): void;
|
|
16
16
|
get name(): string;
|
|
17
17
|
}
|