persona-community-5/.pnpm-store/v3/files/b9/318e94200b18e4344c9e525ac4630ef93bd7fdb90af31979d496bb4a0f8c6578c3f665e652f0bf99e37a3e908c22bd9f997614c60ed600822cb7586ee2eb29-exec
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

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;