UNPKG

@deep-foundation/deeplinks

Version:

[![npm](https://img.shields.io/npm/v/@deep-foundation/deeplinks.svg)](https://www.npmjs.com/package/@deep-foundation/deeplinks) [![Gitpod](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/deep-fo

35 lines (34 loc) 933 B
/// <reference types="node" /> export interface ICallOptions { operation: 'run' | 'sleep' | 'reset'; envs: { [key: string]: string; }; } interface ICheckDeeplinksStatusReturn { result?: 1 | 0 | undefined; error?: any; } export declare const _checkDeeplinksStatus: () => Promise<ICheckDeeplinksStatusReturn>; export declare const _checkDeepcaseStatus: () => Promise<ICheckDeeplinksStatusReturn>; export declare function call(options: ICallOptions): Promise<{ result?: { stdout: string; stderr: string; }; error?: any; user: any; homeDir: any; platform: NodeJS.Platform; _hasura: string; _deeplinks: string; isDeeplinksDocker: ICheckDeeplinksStatusReturn; isDeepcaseDocker: ICheckDeeplinksStatusReturn; envs: { DOCKERHOST: string; }; engineStr: string; fullStr: string; operation: "reset" | "run" | "sleep"; }>; export {};