public_notes/quartz/util/ctx.ts

21 lines
362 B
TypeScript
Raw Normal View History

import { QuartzConfig } from "../cfg"
import { FullSlug } from "./path"
2023-07-24 07:37:06 +09:00
export interface Argv {
directory: string
verbose: boolean
output: string
serve: boolean
fastRebuild: boolean
2023-07-24 07:37:06 +09:00
port: number
wsPort: number
remoteDevHost?: string
concurrency?: number
2023-07-24 07:37:06 +09:00
}
export interface BuildCtx {
argv: Argv
cfg: QuartzConfig
allSlugs: FullSlug[]
2023-07-24 07:37:06 +09:00
}