mirror of
https://github.com/web-infra-dev/midscene.git
synced 2025-07-19 06:53:25 +00:00
44 lines
1.5 KiB
TypeScript
44 lines
1.5 KiB
TypeScript
export { useStaticPageAgent } from './component/playground/useStaticPageAgent';
|
|
import './component/playground/index.less';
|
|
export {
|
|
type AnimationScript,
|
|
type ReplayScriptsInfo,
|
|
allScriptsFromDump,
|
|
generateAnimationScripts,
|
|
} from './component/replay-scripts';
|
|
export { useEnvConfig } from './component/store/store';
|
|
|
|
export {
|
|
colorForName,
|
|
highlightColorForType,
|
|
globalThemeConfig,
|
|
} from './component/color';
|
|
|
|
export { EnvConfig } from './component/env-config';
|
|
|
|
export { Logo } from './component/logo';
|
|
export { iconForStatus, timeCostStrElement } from './component/misc';
|
|
export { useServerValid } from './component/playground/useServerValid';
|
|
|
|
export { PlaygroundResultView } from './component/playground/PlaygroundResult';
|
|
export type { PlaygroundResult } from './component/playground/playground-types';
|
|
export { ServiceModeControl } from './component/playground/ServiceModeControl';
|
|
export { ContextPreview } from './component/playground/ContextPreview';
|
|
export { PromptInput } from './component/playground/PromptInput';
|
|
export { Player } from './component/player';
|
|
export { Blackboard } from './component/blackboard';
|
|
export { GithubStar } from './component/github-star';
|
|
|
|
// Export playground utilities
|
|
export {
|
|
requestPlaygroundServer,
|
|
overrideServerConfig,
|
|
getTaskProgress,
|
|
checkServerStatus,
|
|
actionNameForType,
|
|
staticAgentFromContext,
|
|
formatErrorMessage,
|
|
getPlaceholderForType,
|
|
blankResult,
|
|
} from './component/playground/playground-utils';
|