import { BuildResult, BuildOptions } from "esbuild"; import { Answers } from "prompts"; import { ModuleConfig } from "../lib/types"; export type InitOptions = Answers<"name" | "description" | "errorBehavior" | "uuid">; export type Reloader = (opts: BuildResult) => void | Promise; export type PeprConfig = Omit & { pepr: PeprNestedFields & { includedFiles: string[]; }; description: string; version: string; }; type PeprNestedFields = Pick & { peprVersion: string; }; export {}; //# sourceMappingURL=types.d.ts.map