mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
6 lines
202 B
TypeScript
6 lines
202 B
TypeScript
import type { DraftAgentStatusBarProps } from "./agent-status-bar";
|
|
|
|
export function resolveStatusControlMode(statusControls?: DraftAgentStatusBarProps) {
|
|
return statusControls ? "draft" : "ready";
|
|
}
|