Skip to content

Commit

Permalink
chore: wip
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbbreuer committed Jan 7, 2025
1 parent efa03d4 commit a37e453
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion packages/qrx/src/bar/renderers/canvas.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import merge from '../utils/merge'
import { calculateEncodingAttributes, getMaximumHeightOfEncodings, getTotalWidthOfEncodings } from './shared'

class CanvasRenderer {
export class CanvasRenderer {
canvas: any
encodings: any
options: any

constructor(canvas: any, encodings: any, options: any) {
this.canvas = canvas
this.encodings = encodings
Expand Down
6 changes: 5 additions & 1 deletion packages/qrx/src/bar/renderers/object.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
class ObjectRenderer {
export class ObjectRenderer {
object: any
encodings: any
options: any

constructor(object: any, encodings: any, options: any) {
this.object = object
this.encodings = encodings
Expand Down

0 comments on commit a37e453

Please sign in to comment.