7ad2aa66bb
Co-authored-by: tbarnes94 <tbarnes94@users.noreply.github.com>
7 lines
279 B
TypeScript
Executable file
7 lines
279 B
TypeScript
Executable file
import { URISchemeHandler, URIOptions } from "../uri";
|
|
import { URNComponents } from "./urn";
|
|
export interface UUIDComponents extends URNComponents {
|
|
uuid?: string;
|
|
}
|
|
declare const handler: URISchemeHandler<UUIDComponents, URIOptions, URNComponents>;
|
|
export default handler;
|