mirror of
https://github.com/Azure/setup-kubectl.git
synced 2026-06-24 18:09:27 +08:00
7ad2aa66bb
Co-authored-by: tbarnes94 <tbarnes94@users.noreply.github.com>
11 lines
324 B
TypeScript
Executable File
11 lines
324 B
TypeScript
Executable File
import { URISchemeHandler, URIComponents, URIOptions } from "../uri";
|
|
export interface URNComponents extends URIComponents {
|
|
nid?: string;
|
|
nss?: string;
|
|
}
|
|
export interface URNOptions extends URIOptions {
|
|
nid?: string;
|
|
}
|
|
declare const handler: URISchemeHandler<URNComponents, URNOptions>;
|
|
export default handler;
|