-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
Typedoc docs
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
./node_modules/.bin/typedoc --mode file --theme minimal --target "ES6" --exclude "**/*.test.ts,**/testHelpers/*" --hideGenerator --excludeExternals --excludeNotExported --includeDeclarations --readme none --out docs |
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
import AbstractActionHandler from "./AbstractActionHandler" | ||
import MassiveActionHandler from "./postgres/MassiveActionHandler" | ||
import { AbstractActionHandler } from "./AbstractActionHandler" | ||
import { postgres } from "./postgres" | ||
|
||
module.exports = { | ||
export const handlers = { | ||
AbstractActionHandler, | ||
postgres: { | ||
MassiveActionHandler, | ||
}, | ||
postgres, | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import { MassiveActionHandler } from "./MassiveActionHandler" | ||
|
||
export const postgres = { MassiveActionHandler } |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
import NodeosActionReader from "./NodeosActionReader" | ||
import { NodeosActionReader } from "./NodeosActionReader" | ||
|
||
module.exports = { | ||
NodeosActionReader, | ||
} | ||
export const eos = { NodeosActionReader } |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
import AbstractActionReader from "./AbstractActionReader" | ||
import * as eos from "./eos" | ||
import { AbstractActionReader } from "./AbstractActionReader" | ||
import { eos } from "./eos" | ||
import { testing } from "./testing" | ||
|
||
module.exports = { | ||
export const readers = { | ||
AbstractActionReader, | ||
eos, | ||
testing, | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import { JsonActionReader } from "./JsonActionReader" | ||
|
||
export const testing = { JsonActionReader } |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
import BaseActionWatcher from "./BaseActionWatcher" | ||
import { BaseActionWatcher } from "./BaseActionWatcher" | ||
|
||
module.exports = { | ||
BaseActionWatcher, | ||
} | ||
export const watchers = { BaseActionWatcher } |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,3 @@ | ||
import * as handlers from "./demux/handlers" | ||
import * as readers from "./demux/readers" | ||
import * as watchers from "./demux/watchers" | ||
|
||
export { | ||
handlers, | ||
readers, | ||
watchers, | ||
} | ||
export { handlers } from "./demux/handlers" | ||
export { readers } from "./demux/readers" | ||
export { watchers } from "./demux/watchers" |