mirror of
https://github.com/Wei-Shaw/claude-relay-service.git
synced 2026-01-23 21:17:30 +00:00
11 lines
324 B
TypeScript
Executable File
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;
|