版博士V2.0程序
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

urn.d.ts 324 B

12345678910
  1. import { URISchemeHandler, URIComponents, URIOptions } from "../uri";
  2. export interface URNComponents extends URIComponents {
  3. nid?: string;
  4. nss?: string;
  5. }
  6. export interface URNOptions extends URIOptions {
  7. nid?: string;
  8. }
  9. declare const handler: URISchemeHandler<URNComponents, URNOptions>;
  10. export default handler;