mirror of https://github.com/openclaw/openclaw.git
12 lines
512 B
TypeScript
12 lines
512 B
TypeScript
// Narrow shared Matrix runtime exports for light runtime-api consumers.
|
|
|
|
export type {
|
|
ChannelDirectoryEntry,
|
|
ChannelMessageActionContext,
|
|
} from "../channels/plugins/types.js";
|
|
export type { OpenClawConfig } from "../config/config.js";
|
|
export { formatZonedTimestamp } from "../infra/format-time/format-datetime.js";
|
|
export type { PluginRuntime, RuntimeLogger } from "../plugins/runtime/types.js";
|
|
export type { RuntimeEnv } from "../runtime.js";
|
|
export type { WizardPrompter } from "../wizard/prompts.js";
|