feat: run prettier

This commit is contained in:
JellyBrick
2023-11-30 11:59:27 +09:00
parent 44c42310f1
commit a3104fda4b
116 changed files with 2928 additions and 1254 deletions

7
src/navigation.d.ts vendored
View File

@ -62,7 +62,10 @@ interface Navigation extends EventTarget {
onnavigateerror: ((this: Navigation, ev: Event) => any) | null;
oncurrententrychange: ((this: Navigation, ev: Event) => any) | null;
addEventListener<K extends keyof NavigationEventsMap>(name: K, listener: (event: NavigationEventsMap[K]) => void);
addEventListener<K extends keyof NavigationEventsMap>(
name: K,
listener: (event: NavigationEventsMap[K]) => void,
);
}
declare class NavigateEvent extends Event {
@ -84,5 +87,5 @@ type NavigationHistoryBehavior = 'auto' | 'push' | 'replace';
declare const Navigation: {
prototype: Navigation;
new(): Navigation;
new (): Navigation;
};