Skip to content

Instantly share code, notes, and snippets.

@vladar
Created November 6, 2019 10:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vladar/c647ae5218fb2c843cd9256d5023c26c to your computer and use it in GitHub Desktop.
Save vladar/c647ae5218fb2c843cd9256d5023c26c to your computer and use it in GitHub Desktop.

Table of Contents

Foo

Iface Foo

foo

field foo

Type: string

Foo

argument bar

foo

field foo

Type: string

Bar

Iface Bar

/** Iface Foo */
interface Foo {
/** field foo */
foo: string;
}
/** Iface Bar */
interface Bar {
(
/** argument bar */
bar: Foo,
): void
}
@vladar
Copy link
Author

vladar commented Nov 6, 2019

Command used: documentation build test.ts -f md --shallow > docs.md

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment