File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/dev-utils/src/indexer Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ export async function indexer(): Promise<void> {
2929 const meta = join ( documentationRoot , src , "constants" , "meta" ) ;
3030 const tocsPath = join ( meta , "tocs.ts" ) ;
3131 const tocsContents =
32- format ( `${ COPY_BANNER } import { TOCRecord } from "./types";
32+ format ( `${ COPY_BANNER } import type { TOCRecord } from "./types";
3333
3434const tocs: TOCRecord = ${ JSON . stringify ( tocs , null , 2 ) } ;
3535
@@ -38,7 +38,7 @@ export default tocs`);
3838
3939 const searchPath = join ( meta , "search.ts" ) ;
4040 const searchContents =
41- format ( `${ COPY_BANNER } import { RouteMetadata } from "./types";
41+ format ( `${ COPY_BANNER } import type { RouteMetadata } from "./types";
4242
4343const metadata: readonly RouteMetadata[] = ${ JSON . stringify ( metadata , null , 2 ) } ;
4444
You can’t perform that action at this time.
0 commit comments