@langchain/core
Version:
Core LangChain.js abstractions and schemas
11 lines • 475 B
text/typescript
import { UUIDTypes } from "./types.cjs";
import { DNS, URL } from "./v35.cjs";
//#region src/utils/uuid/v5.d.ts
declare function v5(value: string | Uint8Array, namespace: UUIDTypes, buf?: undefined, offset?: number): string;
declare namespace v5 {
export { DNS };
export { URL };
}
declare function v5<TBuf extends Uint8Array = Uint8Array>(value: string | Uint8Array, namespace: UUIDTypes, buf: TBuf, offset?: number): TBuf;
export = v5;
//# sourceMappingURL=v5.d.cts.map