feat(typert): add compiler-independent type pipeline

This commit is contained in:
imccyu
2026-07-29 23:45:42 +08:00
parent 2b7bc0c195
commit f773985e71
84 files changed
+15378 -15

No files matched your search

@@ -110,8 +110,8 @@ export class SessionReferenceService extends Service {
*/
async listCandidates(
agent: Agent,
query = '',
limit = this.config.candidateLimit,
query: string = '',
limit: number = this.config.candidateLimit,
signal?: AbortSignal,
): Promise<SessionReferenceCandidate[]> {
if (!Number.isSafeInteger(limit) || limit <= 0) {