Igor Minar 499e303ea3 test(ivy): add global utils to the public_api_guard test (#27008)
This API is part of our public api surface and needs to be monitored by the public_api_guard.

I also had to go back and mark all of the exported functions with @publicApi jsdoc tag.

PR Close #27008
2018-11-08 15:37:11 -08:00

15 lines
430 B
Python

load("//tools/ts-api-guardian:index.bzl", "ts_api_guardian_test")
load(":public_api_guard.bzl", "generate_targets")
generate_targets(glob(["*/**/*.d.ts"]))
ts_api_guardian_test(
name = "ng_global_utils_api",
actual = "angular/packages/core/src/render3/global_utils_api.d.ts",
data = [
":global_utils.d.ts",
"//packages/core",
],
golden = "angular/tools/public_api_guard/global_utils.d.ts",
)