You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
419 B
9 lines
419 B
import { UUIDTypes } from './types.js'; |
|
export { DNS, URL } from './v35.js'; |
|
declare function v3(value: string | Uint8Array, namespace: UUIDTypes, buf?: undefined, offset?: number): string; |
|
declare function v3<TBuf extends Uint8Array = Uint8Array>(value: string | Uint8Array, namespace: UUIDTypes, buf: TBuf, offset?: number): TBuf; |
|
declare namespace v3 { |
|
var DNS: string; |
|
var URL: string; |
|
} |
|
export default v3;
|
|
|