Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
dalechyn committed Oct 23, 2024
1 parent 1029b78 commit 7482189
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/Internal/Actions/Cast/getCast.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import type { CallOptions } from '@connectrpc/connect'
import { Hex } from 'ox'
import { Cast_fromMessage } from '../../Cast/fromMessage.js'
import type { Cast, CastId } from '../../Cast/types.js'
import type { Cast } from '../../Cast/types.js'
import type { CastId } from '../../CastId/types.js'
import type { Client } from '../../Client/types.js'
import type { GlobalErrorType } from '../../Errors/error.js'

Expand Down
3 changes: 2 additions & 1 deletion src/Internal/Actions/Cast/getCastsByParent.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import type { CallOptions } from '@connectrpc/connect'
import { Hex, type Types } from 'ox'
import { Cast_fromMessage } from '../../Cast/fromMessage.js'
import type { Cast, Parent } from '../../Cast/types.js'
import type { Cast } from '../../Cast/types.js'
import type { Client } from '../../Client/types.js'
import type { GlobalErrorType } from '../../Errors/error.js'
import { Parent_toMessage } from '../../Parent/toMessage.js'
import type { Parent } from '../../Parent/types.js'

export declare namespace Actions_Cast_GetCastsByParent {
type ReturnType = {
Expand Down
3 changes: 2 additions & 1 deletion src/Internal/Cast/fromMessage.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { Embed_fromMessage } from '../Embed/fromMessage.js'
import type { Embed } from '../Embed/types.js'
import type { GlobalErrorType } from '../Errors/error.js'
import { Meta_fromMessage } from '../Meta/fromMessage.js'
import { Parent_fromMessage } from '../Parent/fromMessage.js'
Expand All @@ -7,7 +8,7 @@ import {
Cast_InvalidEmbedsError,
Cast_InvalidMessageTypeError,
} from './errors.js'
import type { Cast, Embed } from './types.js'
import type { Cast } from './types.js'

export function Cast_fromMessage(
message: Message,
Expand Down

0 comments on commit 7482189

Please sign in to comment.