6 lines
61 B
TypeScript
6 lines
61 B
TypeScript
interface IServer {
|
|
port: number
|
|
}
|
|
|
|
export default IServer
|