Jacky Zhao
2023-08-09 68ccd1d79de7cef275605e238238c1a80bbb074f
quartz/ctx.ts
@@ -1,4 +1,5 @@
import { QuartzConfig } from "./cfg"
import { ServerSlug } from "./path"
export interface Argv {
  directory: string
@@ -6,9 +7,11 @@
  output: string
  serve: boolean
  port: number
  concurrency?: number
}
export interface BuildCtx {
  argv: Argv
  cfg: QuartzConfig
  allSlugs: ServerSlug[]
}