UNPKG

serverless-prune-versions

Version:

Serverless plugin to delete old versions of deployed functions from AWS

18 lines (17 loc) 475 B
/// <reference types="serverless" /> export declare class Settings implements PruneSettings { automatic?: boolean; number?: number; stage?: string; region?: string; function?: string; layer?: string; includeLayers?: boolean; dryRun?: boolean; noDeploy?: boolean; constructor(config: PruneConfig, rawOptions?: Serverless.Options); private getSettings; private cleanRawOptions; private validate; private validationMsg; }