DefinitelyTyped/types/docopt/docopt-tests.ts
2017-09-25 10:33:55 -04:00

10 lines
276 B
TypeScript

import { docopt } from "docopt";
var doc = `
Usage:
quick_example.coffee tcp <host> <port> [--timeout=<seconds>]
quick_example.coffee serial <port> [--baud=9600] [--timeout=<seconds>]
quick_example.coffee -h | --help | --version
`;
docopt(doc, { version: '0.1.1rc' });