6 lines
97 B
TypeScript
6 lines
97 B
TypeScript
import type { Pem } from './Pem';
|
|
export type TunnelCertData = {
|
|
key: Pem;
|
|
cert: Pem;
|
|
};
|