1*53b4c0b0SEvan Baconexport type Options = {
2*53b4c0b0SEvan Bacon  dev: boolean;
3*53b4c0b0SEvan Bacon  clear: boolean;
4*53b4c0b0SEvan Bacon};
5*53b4c0b0SEvan Bacon
6*53b4c0b0SEvan Baconexport async function resolveOptionsAsync(args: any): Promise<Options> {
7*53b4c0b0SEvan Bacon  return {
8*53b4c0b0SEvan Bacon    clear: !!args['--clear'],
9*53b4c0b0SEvan Bacon    dev: !!args['--dev'],
10*53b4c0b0SEvan Bacon  };
11*53b4c0b0SEvan Bacon}
12