astro-ghostcms/.pnpm-store/v3/files/75/b70238310ee751c2cb88f4da1c3...

14 lines
446 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
import type yargs from 'yargs-parser';
interface AddOptions {
flags: yargs.Arguments;
}
interface IntegrationInfo {
id: string;
packageName: string;
dependencies: [name: string, version: string][];
type: 'integration' | 'adapter';
}
export declare function add(names: string[], { flags }: AddOptions): Promise<void>;
export declare function validateIntegrations(integrations: string[]): Promise<IntegrationInfo[]>;
export {};