import { Auto, IPlugin } from "@auto-it/core"; import * as t from "io-ts"; declare const pluginOptions: t.TypeC<{ /** Paths to assets to upload */ assets: t.ArrayC; }>; export declare type IUploadAssetsPluginOptions = t.TypeOf; /** Attach extra assets to a GitHub Release */ export default class UploadAssetsPlugin implements IPlugin { /** The name of the plugin */ name: string; /** The options of the plugin */ readonly options: IUploadAssetsPluginOptions; /** Initialize the plugin with it's options */ constructor(options: IUploadAssetsPluginOptions | string[]); /** Tap into auto plugin points. */ apply(auto: Auto): void; } export {}; //# sourceMappingURL=index.d.ts.map