From e325a9441d57a5bcfcdcdc3d09f01c2f7341c8f6 Mon Sep 17 00:00:00 2001 From: Aiden McClelland Date: Thu, 4 May 2023 11:57:10 -0600 Subject: [PATCH] add stopped effect --- lib/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/types.ts b/lib/types.ts index a257d9d..96b3340 100644 --- a/lib/types.ts +++ b/lib/types.ts @@ -460,6 +460,8 @@ export type Effects = { readonly: boolean } }): Promise + + stopped(packageId?: string): Promise } // prettier-ignore