astro-ghostcms/.pnpm-store/v3/files/b9/318e94200b18e4344c9e525ac46...

8 lines
279 B
Plaintext
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;