@huggingface/tasks 0.0.1 → 0.0.2
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/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -142,4 +142,4 @@ interface TaskData {
|
|
|
142
142
|
|
|
143
143
|
declare const TASKS_DATA: Record<PipelineType, TaskData | undefined>;
|
|
144
144
|
|
|
145
|
-
export { TASKS_DATA, type TaskData, type TaskDemo, type TaskDemoEntry };
|
|
145
|
+
export { type ExampleRepo, TASKS_DATA, type TaskData, type TaskDemo, type TaskDemoEntry };
|
package/dist/index.d.ts
CHANGED
|
@@ -142,4 +142,4 @@ interface TaskData {
|
|
|
142
142
|
|
|
143
143
|
declare const TASKS_DATA: Record<PipelineType, TaskData | undefined>;
|
|
144
144
|
|
|
145
|
-
export { TASKS_DATA, type TaskData, type TaskDemo, type TaskDemoEntry };
|
|
145
|
+
export { type ExampleRepo, TASKS_DATA, type TaskData, type TaskDemo, type TaskDemoEntry };
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export type { TaskData, TaskDemo, TaskDemoEntry } from "./Types";
|
|
1
|
+
export type { TaskData, TaskDemo, TaskDemoEntry, ExampleRepo } from "./Types";
|
|
2
2
|
export { TASKS_DATA } from "./tasksData";
|