-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(core): optimize types to decrease building time
- Loading branch information
Dmitrii Kamenskikh
committed
Dec 24, 2024
1 parent
b954c6c
commit de04743
Showing
3 changed files
with
60 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
export { | ||
Injectable, | ||
InjectableValue, | ||
InjectableDependencies, | ||
type Injectable, | ||
type InjectableValue, | ||
type InjectableDependencies, | ||
type InjectableWithName, | ||
type InjectableWithoutName, | ||
type InjectableValueWithoutName, | ||
type InjectableValueWithName, | ||
injectable, | ||
UnknownDependencyTree, | ||
type UnknownDependencyTree, | ||
} from './injectable' | ||
export { provide } from './provide' | ||
export { TokenAccessor, TOKEN_ACCESSOR_KEY, token } from './token' | ||
export { type TokenAccessor, type TokenInjectable, TOKEN_ACCESSOR_KEY, token } from './token' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters