1
0
mirror of https://gitea.com/actions/setup-python.git synced 2025-05-11 02:06:46 +08:00

8 lines
286 B
TypeScript
Raw Normal View History

2019-06-26 21:12:00 -04:00
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;