mirror of
https://github.com/Azure/setup-kubectl.git
synced 2026-06-26 10:59:27 +08:00
7ad2aa66bb
Co-authored-by: tbarnes94 <tbarnes94@users.noreply.github.com>
8 lines
228 B
TypeScript
Executable File
8 lines
228 B
TypeScript
Executable File
import { URISchemeHandler, URIComponents } from "../uri";
|
|
export interface WSComponents extends URIComponents {
|
|
resourceName?: string;
|
|
secure?: boolean;
|
|
}
|
|
declare const handler: URISchemeHandler;
|
|
export default handler;
|