Files
med-notes/.pnpm-store/v10/files/47/19624360a9d79e6f9ef0ae87eb4f2d2377c9117056d0d28cd02d9a89e7fa062fe59e2367f2445ba0e4f4e1507bd13e51777aeea9f4598be0ee187b6c56239e-exec
2025-05-09 05:30:08 +02: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;