File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 22// SPDX-License-Identifier: Apache-2.0
33
44import PermutationsView from "./permutations-view" ;
5- import createPermutations from "./permutations" ;
5+ import { createPermutations , ComponentPermutations } from "./permutations" ;
66
7- export { createPermutations , PermutationsView } ;
7+ export { createPermutations , PermutationsView , ComponentPermutations } ;
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ export type ComponentPermutations<Props> = {
66 [ prop in keyof Props ] : ReadonlyArray < Props [ prop ] > ;
77} ;
88
9- export default function createPermutations < Props > ( permutations : Array < ComponentPermutations < Props > > ) {
9+ export function createPermutations < Props > ( permutations : Array < ComponentPermutations < Props > > ) {
1010 return flatten ( permutations . map ( set => doCreatePermutations ( set ) ) ) ;
1111}
1212
You can’t perform that action at this time.
0 commit comments