8 lines
216 B
TypeScript
8 lines
216 B
TypeScript
import type { Algorithm } from './Algorithm';
|
|
import type { CallbackId } from './CallbackId';
|
|
export type GetSslCertificateParams = {
|
|
hostnames: string[];
|
|
algorithm?: Algorithm;
|
|
callback?: CallbackId;
|
|
};
|