mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-21 20:16:26 +08:00
7 lines
130 B
TypeScript
7 lines
130 B
TypeScript
export interface HashcashPlugin {
|
|
hash(options: {
|
|
challenge: string;
|
|
bits?: number;
|
|
}): Promise<{ value: string }>;
|
|
}
|