UNPKG

probot

Version:

A framework for building GitHub Apps to automate and improve your workflow

14 lines (13 loc) 321 B
type Runtime = "node" | "deno" | "bun" | "browser"; export type GlobalThis = { process?: { versions?: { node?: string; deno?: string; bun?: string; }; }; window?: object; }; export declare function detectRuntime(globalThis: GlobalThis): Runtime; export {};