mirror of
https://github.com/1disk/edp445.git
synced 2024-08-14 22:47:02 +00:00
10 lines
324 B
TypeScript
Executable file
10 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;
|