1
0
mirror of https://github.com/titanscouting/tra-analysis.git synced 2025-03-24 05:35:18 +00:00
2019-01-06 13:14:45 -06:00

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;