@apollo/generate-persisted-query-manifest
Version:
Creates a Persisted Query Manifest from an Apollo Client Web project
16 lines (12 loc) • 317 B
TypeScript
declare module "vfile-reporter" {
import type { VFile } from "vfile";
interface ReporterOptions {
verbose?: boolean;
quiet?: boolean;
silent?: boolean;
color?: boolean;
defaultName?: string;
}
function reporter(files: VFile[], options?: ReporterOptions): string;
export = reporter;
}