@langchain/core
Version:
Core LangChain.js abstractions and schemas
12 lines • 498 B
TypeScript
import { UUIDTypes } from "./types.js";
import { DNS, URL } from "./v35.js";
//#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;
//#endregion
export { v5 as default };
//# sourceMappingURL=v5.d.ts.map