UNPKG

@flotiq/flotiq-astro-sdk

Version:

Astro collection generator for connecting with Flotiq CMS

14 lines (13 loc) 548 B
import { Argv } from "yargs"; export type ApiTypegenArgs = { flotiqKey: string; flotiqApiUrl: string; output: string; moduleName: string; watch: boolean; }; export declare const command: string[]; export declare const describe = "flotiq-astro-typegen\n\nGenerates Astro collections for Flotiq API based on the content type definitions on your account"; export declare const builder: (cmd: Argv) => void; export declare const handler: (args: ApiTypegenArgs) => Promise<void>; export declare const makeMarkdownHelp: () => string;