Skip to content

Commit 8eff55c

Browse files
committed
fix: run linter
1 parent f602e90 commit 8eff55c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/lib/provide-inject.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ import type { Props } from "../types/props";
99
* @example
1010
* const props = inject<PropsInjection<GenericOption, OptionValue>>(PROPS_KEY);
1111
*/
12-
export type PropsInjection<GenericOption extends Option<OptionValue>, OptionValue = string> =
13-
Props<GenericOption, OptionValue>;
12+
export type PropsInjection<GenericOption extends Option<OptionValue>, OptionValue = string> = Props<GenericOption, OptionValue>;
1413

1514
/**
1615
* This type allows you to inject the data with the correct generics

0 commit comments

Comments
 (0)