Skip to content

Commit

Permalink
fix type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
silesky committed Jun 11, 2024
1 parent 99c68ed commit 51ed5d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { logger } from '../../lib/logger'
import { AnyAnalytics, CDNSettings, Signal } from '../../types'
import { SignalBuffer } from '../buffer'
import { Sandbox, SignalsRuntime } from './sandbox'
import { Sandbox } from './sandbox'

const parseDownloadURL = (cdnSettings: CDNSettings) => {
if (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import { Signal } from '../../types/signals'
// could be the buffered signals object?
// This can't get indexdb, it needs to have all the signals in memory.
export class SignalsRuntime {
constructor(private signals: Signal[]) {}
// @ts-ignore
constructor(private _signals: Signal[]) {}
find(..._args: any[]) {
throw new Error('nope')
}
Expand Down

0 comments on commit 51ed5d6

Please sign in to comment.