1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/types/selfsigned.d.ts
Jari Kolehmainen ad1776d101 wip: enable tls on lens-k8s-proxy
Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
2022-03-01 10:10:54 +02:00

27 lines
637 B
TypeScript

/**
* Copyright (c) OpenLens Authors. All rights reserved.
* Licensed under MIT License. See LICENSE in root directory for more information.
*/
declare module "selfsigned" {
export type SelfSignedCert = {
private: string;
public: string;
cert: string;
};
type GenerateAttributes = Array<any>;
type GenerateOptions = {
keySize?: number;
days?: number;
algorithm?: "sha1" | "sha256";
extensions?: any;
pkcs7?: boolean;
clientCertificate?: boolean;
clientCertificateCN?: string;
};
export function generate(GenerateAttributes, GenerateOptions): SelfSignedCert;
}