1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-18 10:45:48 +02:00

return reset value

This commit is contained in:
tamaina
2022-01-04 15:39:19 +09:00
parent cb6d38713f
commit 5bf637b978

View File

@@ -177,6 +177,7 @@ export class Storage<T extends StateDef> {
public reset(key: keyof T) {
this.set(key, this.def[key].default);
return this.def[key].default;
}
/**