Urara-Blog/node_modules/.pnpm-store/v3/files/47/19624360a9d79e6f9ef0ae87eb4f2d2377c9117056d0d28cd02d9a89e7fa062fe59e2367f2445ba0e4f4e1507bd13e51777aeea9f4598be0ee187b6c56239e-exec
2022-08-14 01:14:53 +08:00

10 lines
324 B
Text
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;