@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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@huggingface/tasks",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "type": "module",
5
5
  "description": "A library of tasks for the Hugging Face Hub",
6
6
  "main": "./dist/index.js",
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";