repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | /** |
| #2 | * Heartbeat Configuration |
| #3 | * |
| #4 | * Parses and manages heartbeat.yml configuration. |
| #5 | */ |
| #6 | import type { HeartbeatConfig, AutomatonDatabase } from "../types.js"; |
| #7 | /** |
| #8 | * Load heartbeat config from YAML file, falling back to defaults. |
| #9 | */ |
| #10 | export declare function loadHeartbeatConfig(configPath?: string): HeartbeatConfig; |
| #11 | /** |
| #12 | * Save heartbeat config to YAML file. |
| #13 | */ |
| #14 | export declare function saveHeartbeatConfig(config: HeartbeatConfig, configPath?: string): void; |
| #15 | /** |
| #16 | * Write the default heartbeat.yml file. |
| #17 | */ |
| #18 | export declare function writeDefaultHeartbeatConfig(configPath?: string): void; |
| #19 | /** |
| #20 | * Sync heartbeat entries from YAML config into the database. |
| #21 | */ |
| #22 | export declare function syncHeartbeatToDb(config: HeartbeatConfig, db: AutomatonDatabase): void; |
| #23 | //# sourceMappingURL=config.d.ts.map |