persona-community-5/.pnpm-store/v3/files/47/19624360a9d79e6f9ef0ae87eb4f2d2377c9117056d0d28cd02d9a89e7fa062fe59e2367f2445ba0e4f4e1507bd13e51777aeea9f4598be0ee187b6c56239e-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

11 lines
324 B
Plaintext
Executable File

import { URISchemeHandler, URIComponents, URIOptions } from "../uri";
export interface URNComponents extends URIComponents {
nid?: string;
nss?: string;
}
export interface URNOptions extends URIOptions {
nid?: string;
}
declare const handler: URISchemeHandler<URNComponents, URNOptions>;
export default handler;