6 lines
133 B
TypeScript
6 lines
133 B
TypeScript
import type { Algorithm } from './Algorithm';
|
|
export type GetSslKeyParams = {
|
|
hostnames: string[];
|
|
algorithm?: Algorithm;
|
|
};
|