index.ts 439 B

12345678910111213141516
  1. export { runDocument } from "./document.js";
  2. export type {
  3. DocumentRunInput,
  4. DocumentRunConfig,
  5. DocumentRunCallbacks,
  6. DocumentRunResult,
  7. } from "./document.js";
  8. export { resolvePublishConfig } from "./publish/index.js";
  9. export type {
  10. PublishConfig,
  11. PublishContext,
  12. OssConfig,
  13. FeishuConfig,
  14. } from "./publish/index.js";
  15. export { cleanupExpiredOutput } from "./cleanup.js";
  16. export type { CleanupResult } from "./cleanup.js";