UNPKG

locklift-deploy-artifacts

Version:

Locklift plugin that enables you to store build artifacts across contract migration scripts.

9 lines (6 loc) 281 B
import { FactoryType } from "locklift/internal/factory"; import { DeploymentHandler } from "./handler"; export const PLUGIN_NAME = "deployArtifacts" as const; export type DeployArtifactsExtension<T extends FactoryType> = { [key in typeof PLUGIN_NAME]: DeploymentHandler<T>; };