mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-18 14:25:51 +00:00
feat: 完成第二版类型清理
This commit is contained in:
@@ -1,2 +1,17 @@
|
||||
// Auto-generated stub — replace with real implementation
|
||||
export {};
|
||||
export function loadRemoteSkill(_slug: string, _url: string): Promise<{
|
||||
cacheHit: boolean;
|
||||
latencyMs: number;
|
||||
skillPath: string;
|
||||
content: string;
|
||||
fileCount?: number;
|
||||
totalBytes?: number;
|
||||
fetchMethod?: string;
|
||||
}> {
|
||||
return Promise.resolve({
|
||||
cacheHit: false,
|
||||
latencyMs: 0,
|
||||
skillPath: '',
|
||||
content: '',
|
||||
});
|
||||
}
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
// Auto-generated stub — replace with real implementation
|
||||
export {};
|
||||
export function stripCanonicalPrefix(_name: string): string | null { return null; }
|
||||
export function getDiscoveredRemoteSkill(_slug: string): { url: string } | undefined { return undefined; }
|
||||
|
||||
@@ -1,2 +1,11 @@
|
||||
// Auto-generated stub — replace with real implementation
|
||||
export {};
|
||||
export function logRemoteSkillLoaded(_data: {
|
||||
slug: string;
|
||||
cacheHit: boolean;
|
||||
latencyMs: number;
|
||||
urlScheme: string;
|
||||
error?: string;
|
||||
fileCount?: number;
|
||||
totalBytes?: number;
|
||||
fetchMethod?: string;
|
||||
}): void {}
|
||||
|
||||
Reference in New Issue
Block a user