Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified bun.lockb
Binary file not shown.
1 change: 1 addition & 0 deletions config/cameras.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ export const DISPLAY_PREFIX = "display";
export const ALTERNATIVE1_PREFIX = "alternative1";
export const ALTERNATIVE2_PREFIX = "alternative2";
export const CAPTIONS_PREFIX = "subs";
export const CODE_PREFIX = "code";
1 change: 1 addition & 0 deletions config/scenes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ export type Cameras = {
captions: StaticFile | null;
alternative1: StaticFile | null;
alternative2: StaticFile | null;
code: StaticFile | null;
timestamp: number;
};

Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
"@remotion/studio-server": "4.0.176",
"@remotion/zod-types": "4.0.176",
"class-variance-authority": "^0.7.0",
"twoslash-cdn": "^0.2.8",
"codehike": "1.0.0-alpha.19",
"clsx": "^2.0.0",
"connect": "3.7.0",
"eslint": "^8",
Expand Down
10 changes: 10 additions & 0 deletions public/codehike/code1719140172694.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
// @noErrors

type MyProps = {
onClick: () => void;
onDblClick: () => void;
};

const props: MyProps = {
onClick: () => {},
};
10 changes: 10 additions & 0 deletions public/codehike/code1719140203344.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
// @errors: 2304
type Props = {
onClick: () => void;
onDblClick: () => void;
};

// @errors: 2741
const props: Props = {
onClick: () => {},
};
9 changes: 9 additions & 0 deletions public/codehike/code1719140219229.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
type Props = {
onClick: () => void;
onDblClick: () => void;
};

const props: Props = {
onClick: () => {},
onDblClick: () => {},
};
Loading