/** * @copyright Sister Software * @license AGPL-3.0 * @author Teffen Ellis, et al. * * The synthetic-corpus SHARD RECIPE registry. Each recipe ({@link ShardRecipe}) is what one legacy * `build-*-shard.mjs` script used to be; the `mailwoman corpus shard ` command dispatches * to them. A new shard is a new entry here, not a new script. */ import type { ShardRecipe } from "./scaffold.ts"; export * from "./scaffold.ts"; /** * Recipe name → recipe. */ export declare const SHARD_RECIPES: ReadonlyMap; /** * Look up a recipe by its `` name. */ export declare function getShardRecipe(name: string): ShardRecipe | undefined; /** * All recipes (for `--list` / help). */ export declare function listShardRecipes(): readonly ShardRecipe[]; //# sourceMappingURL=index.d.ts.map