Skip to content

Commit

Permalink
No public description
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 613280852
  • Loading branch information
neuracr authored and copybara-github committed Mar 25, 2024
1 parent 08309d2 commit 6a01077
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/for_closure/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/**
* @license
* SPDX-License-Identifier: Apache-2.0
*/

/**
* @fileoverview Re-exports some functions from safevalues that the Closure Safe
* type that are not migrated yet need. These types can't import these functions
* directly from safevalues because it would create a cyclic dependency.
*/

export {sanitizeUrl} from '../builders/url_builders';

Check failure on line 12 in src/for_closure/index.ts

View workflow job for this annotation

GitHub Actions / run_unit_tests

Module '"../builders/url_builders"' has no exported member 'sanitizeUrl'.
export {SafeUrl, unwrapUrl} from '../internals/url_impl';

Check failure on line 13 in src/for_closure/index.ts

View workflow job for this annotation

GitHub Actions / run_unit_tests

Cannot find module '../internals/url_impl'. Did you mean to set the 'moduleResolution' option to 'node', or to add aliases to the 'paths' option?

goog.tsMigrationNamedExportsShim('safevalues.for_closure');

Check failure on line 15 in src/for_closure/index.ts

View workflow job for this annotation

GitHub Actions / run_unit_tests

Cannot find name 'goog'.
goog.tsMigrationExportsShimDeclareLegacyNamespace();

Check failure on line 16 in src/for_closure/index.ts

View workflow job for this annotation

GitHub Actions / run_unit_tests

Cannot find name 'goog'.

0 comments on commit 6a01077

Please sign in to comment.