Use DurationInSeconds for expireTimer
This commit is contained in:
parent
cf57c7aaf0
commit
6be69a7ba8
59 changed files with 411 additions and 216 deletions
|
@ -1,12 +1,14 @@
|
|||
// Copyright 2021 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import { DurationInSeconds } from './durations';
|
||||
|
||||
export const ITEM_NAME = 'universalExpireTimer';
|
||||
|
||||
export function get(): number {
|
||||
return window.storage.get(ITEM_NAME) || 0;
|
||||
export function get(): DurationInSeconds {
|
||||
return DurationInSeconds.fromSeconds(window.storage.get(ITEM_NAME) || 0);
|
||||
}
|
||||
|
||||
export function set(newValue: number | undefined): Promise<void> {
|
||||
return window.storage.put(ITEM_NAME, newValue || 0);
|
||||
export function set(newValue: DurationInSeconds | undefined): Promise<void> {
|
||||
return window.storage.put(ITEM_NAME, newValue || DurationInSeconds.ZERO);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue