import { Auto, IPlugin } from '@auto-it/core'; interface IUploadAssetsPluginOptions { /** Paths to assets to upload */ assets: string[]; } /** 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