@wesjet/function.js
Version:
wesjet javascript library
14 lines (13 loc) • 466 B
TypeScript
/**
* Copyright (c) Wesbitty, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*
*/
import type { OT } from '../effect/index.js';
import { T } from '../effect/index.js';
import * as fs from './fs.js';
export declare const getWesjetVersion: () => T.Effect<OT.HasTracer, GetWesjetVersionError, string>;
export type GetWesjetVersionError = fs.ReadFileError | fs.JsonParseError;