studiocms
Version:
Astro Native CMS for AstroDB. Built from the ground up by the Astro community.
12 lines (11 loc) • 459 B
TypeScript
import { Effect } from '../../effect.js';
import { CliContext } from '../utils/context.js';
import { type PluginInfo } from './index.js';
declare const ValidatePlugins_base: Effect.Service.Class<ValidatePlugins, "ValidatePlugins", {
readonly effect: Effect.Effect<{
run: (names: string[]) => Effect.Effect<PluginInfo[], Error, CliContext>;
}, never, never>;
}>;
export declare class ValidatePlugins extends ValidatePlugins_base {
}
export {};