mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
13 lines
473 B
TypeScript
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;
|