Skip to content

Commit 6159be9

Browse files
committed
remove unused export
1 parent e3ed197 commit 6159be9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/site-kit/src/lib/markdown/renderer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ function get_jsdoc(node: ts.Node) {
310310
* Transforms a JS code block into a TS code block by turning JSDoc into type annotations.
311311
* Due to pragmatism only the cases currently used in the docs are implemented.
312312
*/
313-
export async function convert_to_ts(js_code: string, indent = '', offset = '') {
313+
async function convert_to_ts(js_code: string, indent = '', offset = '') {
314314
js_code = js_code
315315
.replaceAll('// @filename: index.js', '// @filename: index.ts')
316316
.replace(/(\/\/\/ .+?\.)js/, '$1ts')

0 commit comments

Comments
 (0)