1
0
mirror of https://github.com/S2-/minifyfromhtml.git synced 2025-08-04 20:40:07 +02:00
Files
minifyfromhtml/node_modules/uri-js/dist/esnext/schemes/urn.d.ts
2019-03-29 15:56:41 +01:00

11 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;