(node: ts.Node)
| 2778 | } |
| 2779 | |
| 2780 | function bucketOfTs(node: ts.Node): ExportBucket | undefined { |
| 2781 | if (ts.isVariableStatement(node) || ts.isFunctionDeclaration(node) || ts.isClassDeclaration(node)) return "value" |
| 2782 | if (ts.isTypeAliasDeclaration(node) || ts.isInterfaceDeclaration(node)) return "type" |
| 2783 | return undefined |
| 2784 | } |
| 2785 | |
| 2786 | function normalizeSignature(cwd: string, text: string): string | null { |
| 2787 | const normalizedCwd = normalizePathName(cwd) |
no outgoing calls
no test coverage detected