19624360a9d79e6f9ef0ae87eb4f2d2377c9117056d0d28cd02d9a89e7fa062fe59e2367f2445ba0e4f4e1507bd13e51777aeea9f4598be0ee187b6c56239e-exec 324 B

12345678910
  1. import { URISchemeHandler, URIComponents, URIOptions } from "../uri";
  2. export interface URNComponents extends URIComponents {
  3. nid?: string;
  4. nss?: string;
  5. }
  6. export interface URNOptions extends URIOptions {
  7. nid?: string;
  8. }
  9. declare const handler: URISchemeHandler<URNComponents, URNOptions>;
  10. export default handler;