From 56a54b48aea953fa1a1f9e2c180eecb93c0bf661 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Fri, 9 Sep 2022 03:41:38 -0400 Subject: [PATCH] *add getSeed to api --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index 68521c1..75a245a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -63,6 +63,7 @@ export interface PluginAPI { ): Promise; }; logger: Logger; + getSeed: () => Uint8Array; } export type PluginFunction = (api: PluginAPI) => Promise;