effect
Version:
The missing standard library for TypeScript, for writing production-grade software.
19 lines (16 loc) • 413 B
text/typescript
/**
* @since 2.0.0
*
* Enables low level framework authors to run on their own isolated effect version
*/
import * as internal from "./internal/version.js"
/**
* @since 2.0.0
* @category version
*/
export const getCurrentVersion: () => string = internal.getCurrentVersion
/**
* @since 2.0.0
* @category version
*/
export const setCurrentVersion: (version: string) => void = internal.setCurrentVersion