Skip to content

Commit

Permalink
chore: export ValidHookLocation type instead of validHookLocations
Browse files Browse the repository at this point in the history
  • Loading branch information
0t4u committed Nov 3, 2024
1 parent bdffeef commit aee9bc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/etc/hooks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ export function injectSelectJs(app: Application) {
});
}

type ValidHookLocation = keyof RendererHooks | 'false';
export type ValidHookLocation = keyof RendererHooks | 'false';

export const validHookLocations: ValidHookLocation[] = [
const validHookLocations: ValidHookLocation[] = [
'head.begin',
'head.end',
'body.begin',
Expand Down

0 comments on commit aee9bc4

Please sign in to comment.