Skip to content

Commit fffb3f1

Browse files
committed
chore: lint
1 parent ade460a commit fffb3f1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/chunkers/typescript.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ function getNodeName(node: ts.Node): string | undefined {
6868
return undefined
6969
}
7070

71-
function getSignature(node: ts.Node, sourceFile: ts.SourceFile): string {
71+
function getSignature(node: ts.Node, _sourceFile: ts.SourceFile): string {
7272
// For functions, build signature manually to handle anonymous functions safely
7373
if (ts.isFunctionDeclaration(node)) {
7474
const name = node.name?.getText() || 'anonymous'

0 commit comments

Comments
 (0)