7 lines
131 B
TypeScript
7 lines
131 B
TypeScript
import type { Pem } from './Pem';
|
|
export type SetupResult = {
|
|
hostname: string;
|
|
rootCa: Pem;
|
|
needsRestart: boolean;
|
|
};
|