UNPKG

@reliverse/rse-sdk

Version:

@reliverse/rse-sdk allows you to create new plugins for @reliverse/rse CLI, interact with reliverse.org, and even extend your own CLI functionality (you may also try @reliverse/dler-sdk for this case).

8 lines (7 loc) 326 B
import "dotenv/config"; import type { ReliverseMemory } from "../utils/schemaMemory.js"; export declare function auth({ isDev, useLocalhost, }: { isDev: boolean; useLocalhost: boolean; }): Promise<void>; export declare function authCheck(isDev: boolean, memory: ReliverseMemory, useLocalhost: boolean): Promise<void>;