(
unsupportedArtifactLabel: string,
options: { plural?: boolean } = {},
)
| 3 | import { createUnsupportedArtifactAdapter } from './runtime-artifacts.ts'; |
| 4 | |
| 5 | export function createDaemonRuntimePolicy( |
| 6 | unsupportedArtifactLabel: string, |
| 7 | options: { plural?: boolean } = {}, |
| 8 | ): Pick<AgentDeviceRuntimeConfig, 'artifacts' | 'policy'> { |
| 9 | return { |
| 10 | artifacts: createUnsupportedArtifactAdapter(unsupportedArtifactLabel, options), |
| 11 | policy: localCommandPolicy(), |
| 12 | }; |
| 13 | } |
no test coverage detected