archive
/
tstatic
Archived
1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
tstatic/src/types/index.ts

12 lines
209 B
TypeScript
Raw Normal View History

2018-03-15 21:40:35 +00:00
export interface IOptions {
2017-02-17 21:22:38 +00:00
port: number;
allowed_ips: string[];
2017-02-17 20:27:30 +00:00
basicAuth: string[];
2017-02-15 20:46:18 +00:00
dirList: boolean;
serveDir: string;
opbeat: boolean;
2017-02-17 21:33:32 +00:00
open: boolean;
allowHttp: boolean;
}