mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-20 02:41:41 +00:00
refactor: localize internal implementation types (#101731)
This commit is contained in:
@@ -7,7 +7,7 @@ import type { PluginsListOptions } from "./plugins-list-command.js";
|
||||
import { parseStrictPositiveIntOption } from "./program/helpers.js";
|
||||
import { applyParentDefaultHelpAction } from "./program/parent-default-help.js";
|
||||
|
||||
export type PluginUpdateOptions = {
|
||||
type PluginUpdateOptions = {
|
||||
all?: boolean;
|
||||
acknowledgeClawhubRisk?: boolean;
|
||||
dryRun?: boolean;
|
||||
@@ -40,7 +40,7 @@ export type PluginMarketplaceRefreshOptions = {
|
||||
json?: boolean;
|
||||
};
|
||||
|
||||
export type PluginSearchOptions = {
|
||||
type PluginSearchOptions = {
|
||||
json?: boolean;
|
||||
limit?: number;
|
||||
};
|
||||
@@ -58,18 +58,18 @@ export type PluginRegistryOptions = {
|
||||
refresh?: boolean;
|
||||
};
|
||||
|
||||
export type PluginAuthoringBuildOptions = {
|
||||
type PluginAuthoringBuildOptions = {
|
||||
root?: string;
|
||||
entry?: string;
|
||||
check?: boolean;
|
||||
};
|
||||
|
||||
export type PluginAuthoringValidateOptions = {
|
||||
type PluginAuthoringValidateOptions = {
|
||||
root?: string;
|
||||
entry?: string;
|
||||
};
|
||||
|
||||
export type PluginAuthoringInitOptions = {
|
||||
type PluginAuthoringInitOptions = {
|
||||
directory?: string;
|
||||
force?: boolean;
|
||||
type?: string;
|
||||
|
||||
Reference in New Issue
Block a user