4
0
Fork 0
mirror of https://github.com/actions/setup-node.git synced 2025-11-09 05:56:54 +00:00
setup-node/node_modules/uri-js/dist/esnext/schemes/urn.d.ts
Danny McCormick c3f0a8be66 Use husky
2019-06-05 11:34:47 -04:00

10 lines
324 B
TypeScript

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;