-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
π fix(config): Update the path, otherwise the index.d.ts generated
- Loading branch information
Showing
1 changed file
with
14 additions
and
14 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,14 +1,14 @@ | ||
export { default as sortBubble } from '@/sorts/bubble'; | ||
export { default as sortShortBubble } from '@/sorts/bubble/short'; | ||
export { default as sortCocktail } from '@/sorts/cocktail'; | ||
export { default as sortCounting } from '@/sorts/counting'; | ||
export { default as sortOptimizedCounting } from '@/sorts/counting/optimized'; | ||
export { default as sortHeap } from '@/sorts/heap'; | ||
export { default as sortInsertion } from '@/sorts/insertion'; | ||
export { default as sortMerge } from '@/sorts/merge'; | ||
export { default as sortPancake } from '@/sorts/pancake'; | ||
export { default as sortQuick } from '@/sorts/quick'; | ||
export { default as sortRadix } from '@/sorts/radix'; | ||
export { default as sortSelection } from '@/sorts/selection'; | ||
export { default as sortShell } from '@/sorts/shell'; | ||
export { default as sortTim } from '@/sorts/tim'; | ||
export { default as sortBubble } from './sorts/bubble'; | ||
export { default as sortShortBubble } from './sorts/bubble/short'; | ||
export { default as sortCocktail } from './sorts/cocktail'; | ||
export { default as sortCounting } from './sorts/counting'; | ||
export { default as sortOptimizedCounting } from './sorts/counting/optimized'; | ||
export { default as sortHeap } from './sorts/heap'; | ||
export { default as sortInsertion } from './sorts/insertion'; | ||
export { default as sortMerge } from './sorts/merge'; | ||
export { default as sortPancake } from './sorts/pancake'; | ||
export { default as sortQuick } from './sorts/quick'; | ||
export { default as sortRadix } from './sorts/radix'; | ||
export { default as sortSelection } from './sorts/selection'; | ||
export { default as sortShell } from './sorts/shell'; | ||
export { default as sortTim } from './sorts/tim'; |