Files
openclaw/scripts/fixtures/packed-plugin-sdk-type-smoke.ts
2026-06-04 20:52:50 -04:00

13 lines
473 B
TypeScript

// Packed Plugin Sdk Type Smoke script supports OpenClaw repository automation.
type PublicPluginSdkModules = [
typeof import("openclaw/plugin-sdk"),
typeof import("openclaw/plugin-sdk/channel-entry-contract"),
typeof import("openclaw/plugin-sdk/config-contracts"),
typeof import("openclaw/plugin-sdk/provider-entry"),
typeof import("openclaw/plugin-sdk/runtime-env"),
];
const resolvedModules = null as unknown as PublicPluginSdkModules;
void resolvedModules;