format code using prettier
This commit is contained in:
parent
91999a6303
commit
abde6817f0
27 changed files with 326 additions and 260 deletions
|
@ -1,11 +1,15 @@
|
|||
import { persistentMap } from "@nanostores/persistent";
|
||||
|
||||
type Settings = {
|
||||
onGoingOAuth2Process?: string
|
||||
prefetchTootsDisabled?: boolean
|
||||
}
|
||||
onGoingOAuth2Process?: string;
|
||||
prefetchTootsDisabled?: boolean;
|
||||
};
|
||||
|
||||
export const $settings = persistentMap<Settings>("settings::", {}, {
|
||||
encode: JSON.stringify,
|
||||
decode: JSON.parse
|
||||
})
|
||||
export const $settings = persistentMap<Settings>(
|
||||
"settings::",
|
||||
{},
|
||||
{
|
||||
encode: JSON.stringify,
|
||||
decode: JSON.parse,
|
||||
},
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue