mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-13 11:49:49 +08:00
8 lines
279 B
TypeScript
8 lines
279 B
TypeScript
|
|
import { URISchemeHandler, URIOptions } from "../uri";
|
||
|
|
import { URNComponents } from "./urn";
|
||
|
|
export interface UUIDComponents extends URNComponents {
|
||
|
|
uuid?: string;
|
||
|
|
}
|
||
|
|
declare const handler: URISchemeHandler<UUIDComponents, URIOptions, URNComponents>;
|
||
|
|
export default handler;
|