8 lines
227 B
TypeScript
8 lines
227 B
TypeScript
import type { AddSslOptions } from './AddSslOptions';
|
|
import type { Security } from './Security';
|
|
export type BindOptions = {
|
|
preferredExternalPort: number;
|
|
addSsl: AddSslOptions | null;
|
|
secure: Security | null;
|
|
};
|