mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 19:49:29 +08:00
7 lines
279 B
Text
Executable file
7 lines
279 B
Text
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;
|