@sparticuz/serverless-plugin-monorepo
Version:
OSS Serverless plugin to allow use inside a JS monorepo
11 lines (10 loc) • 402 B
TypeScript
import type Serverless from "serverless";
/** Plugin implementation */
export default class ServerlessMonoRepo {
private serverless;
hooks: Record<string, () => void>;
constructor(serverless: Serverless);
linkPackage(name: string, fromPath: string, toPath: string, created: Set<string>, resolved: string[]): Promise<void>;
clean(): Promise<void>;
initialise(): Promise<void>;
}