Skip to content

Commit

Permalink
Docs: Typedoc ignore flag for generated docs (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
mzkrasner authored Jan 9, 2025
1 parent e5114a0 commit bd85519
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 42 deletions.
2 changes: 0 additions & 2 deletions docs/@ceramic-sdk/events/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@

## Functions

- [assertSignedEvent](functions/assertSignedEvent.md)
- [assertTimeEvent](functions/assertTimeEvent.md)
- [carFromString](functions/carFromString.md)
- [carToString](functions/carToString.md)
- [createSignedInitEvent](functions/createSignedInitEvent.md)
Expand Down
19 changes: 0 additions & 19 deletions docs/@ceramic-sdk/events/functions/assertSignedEvent.md

This file was deleted.

19 changes: 0 additions & 19 deletions docs/@ceramic-sdk/events/functions/assertTimeEvent.md

This file was deleted.

8 changes: 6 additions & 2 deletions packages/events/src/codecs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ export function decodeSignedEvent(input: unknown): SignedEvent {
return decode(SignedEvent, input)
}

/** Assert the provided `input` is a SignedEvent */
/**
* @ignore
*/
export function assertSignedEvent(
input: unknown,
): asserts input is SignedEvent {
Expand All @@ -90,7 +92,9 @@ export function decodeTimeEvent(input: unknown): TimeEvent {
return decode(TimeEvent, input)
}

/** Assert the provided `input` is a TimeEvent */
/**
* @ignore
*/
export function assertTimeEvent(input: unknown): asserts input is TimeEvent {
decodeTimeEvent(input)
}

0 comments on commit bd85519

Please sign in to comment.