@sorrell/code-hike 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Remotion.d.ts +17 -0
- package/Remotion.js +1 -1
- package/package.json +2 -1
package/Remotion.d.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @file Remotion.d.ts
|
|
3
|
+
* @author Gage Sorrell <gage@sorrell.sh>
|
|
4
|
+
* @copyright (c) 2026 Gage Sorrell
|
|
5
|
+
* @license MIT
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/* eslint-disable jsdoc/require-jsdoc */
|
|
9
|
+
|
|
10
|
+
import type { CodeHikeConfig } from "codehike/mdx";
|
|
11
|
+
import type { WebpackConfiguration } from "@remotion/cli/config";
|
|
12
|
+
|
|
13
|
+
export const DefaultCodeHikeConfig: CodeHikeConfig;
|
|
14
|
+
export function EnableMdx(CurrentConfiguration: WebpackConfiguration): Promise<WebpackConfiguration>;
|
|
15
|
+
|
|
16
|
+
export function ApplyBaseConfig(): void;
|
|
17
|
+
export function ApplyDefaultConfig(EntryPoint: string): void;
|
package/Remotion.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sorrell/code-hike",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.6",
|
|
5
5
|
"description": "A helper library for making animations with Code Hike.",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "tsc -p ./tsconfig.json"
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
"Distribution",
|
|
48
48
|
"Distribution/**/*",
|
|
49
49
|
"Remotion.js",
|
|
50
|
+
"Remotion.d.ts",
|
|
50
51
|
"tsconfig.remotion.json"
|
|
51
52
|
],
|
|
52
53
|
"exports": {
|