quartz-research-note/quartz/ctx.ts
2023-07-23 15:37:06 -07:00

16 lines
234 B
TypeScript

import { QuartzConfig } from "./cfg"
export interface Argv {
directory: string
verbose: boolean
output: string
serve: boolean
port: number
}
export interface BuildCtx {
argv: Argv
version: string
cfg: QuartzConfig
}