UNPKG

draaft

Version:

A CLI to pull content from https://pilot.pm content collaboration platform and feed your static site generator with markdown files

10 lines (9 loc) 267 B
import Command from "@oclif/command"; import { DraaftConfiguration } from "./types"; export declare abstract class BaseCommand extends Command { apiToken: string; spinner: any; draaftConfig: DraaftConfiguration; api: any; init(): Promise<void>; }