mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-14 21:06:02 +00:00
* feat(tooling): add tsgo typecheck lane for scripts/** * fix(scripts): burn down scripts type debt surfaced by the new lane Typing-only except bugs the lane surfaced: gh-read timeout race, Discord Headers spread dropping entries, undefined allowedHeadBranches match, plugin-boundary matchAll crash. Deletes retired config keys from fixtures/benches (prompt snapshots regenerated, config dump only) and the orphaned non-runnable sync-moonshot-docs script. Adds full-surface .d.mts declarations for existing .mjs boundaries.
12 lines
722 B
TypeScript
12 lines
722 B
TypeScript
export const BUNDLED_PLUGIN_ROOT_DIR: "extensions";
|
|
export const BUNDLED_PLUGIN_PATH_PREFIX: "extensions/";
|
|
export const BUNDLED_PLUGIN_TEST_GLOB: "extensions/**/*.test.ts";
|
|
export const BUNDLED_PLUGIN_E2E_TEST_GLOB: "extensions/**/*.e2e.test.ts";
|
|
export const BUNDLED_PLUGIN_LIVE_TEST_GLOB: "extensions/**/*.live.test.ts";
|
|
|
|
export function bundledPluginRoot(pluginId: string): string;
|
|
export function bundledPluginFile(pluginId: string, relativePath: string): string;
|
|
export function bundledDistPluginRoot(pluginId: string): string;
|
|
export function bundledDistPluginFile(pluginId: string, relativePath: string): string;
|
|
export function bundledPluginCallsite(pluginId: string, relativePath: string, line: number): string;
|