Jacky Zhao
2023-08-09 ad3f7b2d5fe15af2626250463994f5a9e9ba6d0a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { QuartzConfig } from "./cfg"
import { ServerSlug } from "./path"
 
export interface Argv {
  directory: string
  verbose: boolean
  output: string
  serve: boolean
  port: number
  concurrency?: number
}
 
export interface BuildCtx {
  argv: Argv
  cfg: QuartzConfig
  allSlugs: ServerSlug[]
}