draaft
Version:
A CLI to pull content from https://pilot.pm content collaboration platform and feed your static site generator with markdown files
11 lines (10 loc) • 378 B
TypeScript
import { Command, flags } from "@oclif/command";
export default class Layout extends Command {
static description: string;
static flags: {
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
ssg: flags.IOptionFlag<string | undefined>;
overwrite: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
};
run(): Promise<void>;
}