the-forest/client/node_modules/uri-js/dist/esnext/schemes/urn.d.ts
2024-09-17 20:35:18 -04:00

11 lines
324 B
TypeScript
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;