22 lines
512 B
Python
22 lines
512 B
Python
# This package contains options shared by all MediaPipe Tasks for Web.
|
|
|
|
load("//mediapipe/framework/port:build_config.bzl", "mediapipe_ts_declaration")
|
|
|
|
package(default_visibility = ["//mediapipe/tasks:internal"])
|
|
|
|
mediapipe_ts_declaration(
|
|
name = "category",
|
|
srcs = ["category.d.ts"],
|
|
)
|
|
|
|
mediapipe_ts_declaration(
|
|
name = "classification_result",
|
|
srcs = ["classification_result.d.ts"],
|
|
deps = [":category"],
|
|
)
|
|
|
|
mediapipe_ts_declaration(
|
|
name = "landmark",
|
|
srcs = ["landmark.d.ts"],
|
|
)
|