fix: add local type imports for AgentIdentity and DisclawConfig #52

Closed
dev wants to merge 1 commit from fix/zod-pino-type-imports into main
2 changed files with 2 additions and 0 deletions

View file

@ -3,6 +3,7 @@ import * as path from "path";
import * as YAML from "yaml";
import { ZodError } from "zod";
import { AgentYamlSchema } from "./schema";
import type { AgentYaml as AgentIdentity } from "./schema";
export type { AgentYaml as AgentIdentity } from "./schema";

View file

@ -6,6 +6,7 @@ import * as YAML from "yaml";
import { ZodError } from "zod";
import { childLogger } from "../runtime/logger";
import { DisclawConfigSchema } from "./schema";
import type { DisclawConfig } from "./schema";
export type { DisclawConfig } from "./schema";