partial options typing

This commit is contained in:
kruschen 2024-08-28 22:33:16 +00:00
parent 324d92613d
commit 70e77714b9
3 changed files with 223 additions and 148 deletions

View file

@ -41,7 +41,7 @@ export function lock(id: string) {
}
// unlock option
function unlock(id: string) {
export function unlock(id: string) {
localStorage.removeItem(id);
const $lock = document.getElementById("lock_" + id);
if ($lock) {