mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-21 10:16:44 +00:00
* fix(ci): verify script declaration contracts * fix(ci): harden declaration export analysis * fix(ci): cover opaque script module exports * test(ci): cover cyclic script declaration barrels
20 lines
399 B
TypeScript
20 lines
399 B
TypeScript
#!/usr/bin/env node
|
|
export function formatGithubWarning(finding: unknown): string;
|
|
export function collectTempCreationFindingsFromDiff(
|
|
diffText: unknown,
|
|
options?: Record<string, unknown>,
|
|
): (
|
|
| {
|
|
file: unknown;
|
|
line: unknown;
|
|
reason: string;
|
|
source: string;
|
|
}
|
|
| {
|
|
file: string;
|
|
line: number;
|
|
reason: string;
|
|
source: unknown;
|
|
}
|
|
)[];
|