mirror of
https://github.com/Azure/setup-kubectl.git
synced 2026-06-28 20:49:26 +08:00
7ad2aa66bb
Co-authored-by: tbarnes94 <tbarnes94@users.noreply.github.com>
8 lines
279 B
TypeScript
Executable File
8 lines
279 B
TypeScript
Executable File
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;
|