@wesjet/function.js
Version:
wesjet javascript library
18 lines (17 loc) • 574 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 { JsonValue } from 'type-fest';
import { T } from './effect/index.js';
export declare const hashObject: (obj: JsonValue | any) => T.Effect<unknown, HashError, string>;
declare const HashError_base: import("@effect-ts/system/Case/index.js").CaseConstructorTagged<"HashError", "_tag">;
export declare class HashError extends HashError_base<{
readonly error: unknown;
}> {
}
export {};