minauth
Version:
A TypeScript library for building authentication systems on top of the Mina blockchain and other zero-knowledge proofs solutions.
8 lines (7 loc) • 296 B
TypeScript
import { PluginServer } from './types.js';
export declare const setupAllRoutes: () => PluginServer<void>;
/**
* Calls app.listen() to start serving the plugin server
* the configuration is read from the plugin server environment
*/
export declare const startServing: () => PluginServer<void>;