UNPKG

locklift-deploy-artifacts

Version:

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

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