*add getSeed to api

This commit is contained in:
Derrick Hammer 2022-09-09 03:41:38 -04:00
parent 789542e2a6
commit 56a54b48ae
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 0 deletions

View File

@ -63,6 +63,7 @@ export interface PluginAPI {
): Promise<Err>;
};
logger: Logger;
getSeed: () => Uint8Array;
}
export type PluginFunction = (api: PluginAPI) => Promise<void>;