phonic
Version:
[](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2FPhonic-Co%2Fphonic-node) [ • 328 B
TypeScript
/**
* A constant that indicates which environment and version the SDK is running in.
*/
export declare const RUNTIME: Runtime;
export interface Runtime {
type: "browser" | "web-worker" | "deno" | "bun" | "node" | "react-native" | "unknown" | "workerd" | "edge-runtime";
version?: string;
parsedVersion?: number;
}