From 81daedfbbfcd0d52a80c8acf4eb7e2c5fec2d5a4 Mon Sep 17 00:00:00 2001 From: Jose Montes Date: Fri, 17 Jul 2026 19:51:13 +0000 Subject: [PATCH 1/6] Standardize on index.ts entry points Tracked in b/535315569 --- renderers/angular/ng-package.json | 2 +- renderers/angular/src/{public-api.ts => index.ts} | 2 +- renderers/angular/src/v0_8/{public-api.ts => index.ts} | 0 renderers/angular/src/v0_8/ng-package.json | 2 +- renderers/angular/src/v0_9/{public-api.ts => index.ts} | 0 renderers/angular/src/v0_9/ng-package.json | 2 +- .../angular/src/v0_9/testing/{public-api.ts => index.ts} | 0 renderers/angular/src/v0_9/testing/ng-package.json | 2 +- renderers/angular/tsconfig.json | 8 ++++---- samples/client/angular/projects/lib/ng-package.json | 2 +- samples/client/angular/tsconfig.json | 2 +- .../angular/projects/a2a-chat-canvas/ng-package.json | 2 +- .../a2a-chat-canvas/src/{public-api.ts => index.ts} | 0 .../a2ui-in-mcpapps/server/apps/editor/tsconfig.app.json | 2 +- .../mcp/a2ui-in-mcpapps/server/apps/src/tsconfig.app.json | 2 +- 15 files changed, 14 insertions(+), 14 deletions(-) rename renderers/angular/src/{public-api.ts => index.ts} (94%) rename renderers/angular/src/v0_8/{public-api.ts => index.ts} (100%) rename renderers/angular/src/v0_9/{public-api.ts => index.ts} (100%) rename renderers/angular/src/v0_9/testing/{public-api.ts => index.ts} (100%) rename samples/community/client/angular/projects/a2a-chat-canvas/src/{public-api.ts => index.ts} (100%) diff --git a/renderers/angular/ng-package.json b/renderers/angular/ng-package.json index 37f030ef2..f727dd5ae 100644 --- a/renderers/angular/ng-package.json +++ b/renderers/angular/ng-package.json @@ -2,7 +2,7 @@ "$schema": "../../node_modules/ng-packagr/ng-package.schema.json", "dest": "./dist", "lib": { - "entryFile": "src/public-api.ts" + "entryFile": "src/index.ts" }, "allowedNonPeerDependencies": ["@a2ui/web_core", "zod"] } diff --git a/renderers/angular/src/public-api.ts b/renderers/angular/src/index.ts similarity index 94% rename from renderers/angular/src/public-api.ts rename to renderers/angular/src/index.ts index 1426dd356..101d51bf8 100644 --- a/renderers/angular/src/public-api.ts +++ b/renderers/angular/src/index.ts @@ -15,4 +15,4 @@ */ export const A2UI_ANGULAR_VERSION = '0.9.0'; -export * from './v0_8/public-api'; +export * from './v0_8'; diff --git a/renderers/angular/src/v0_8/public-api.ts b/renderers/angular/src/v0_8/index.ts similarity index 100% rename from renderers/angular/src/v0_8/public-api.ts rename to renderers/angular/src/v0_8/index.ts diff --git a/renderers/angular/src/v0_8/ng-package.json b/renderers/angular/src/v0_8/ng-package.json index 80dbcb46f..7e82164ba 100644 --- a/renderers/angular/src/v0_8/ng-package.json +++ b/renderers/angular/src/v0_8/ng-package.json @@ -1,6 +1,6 @@ { "$schema": "../../node_modules/ng-packagr/ng-package.schema.json", "lib": { - "entryFile": "public-api.ts" + "entryFile": "index.ts" } } diff --git a/renderers/angular/src/v0_9/public-api.ts b/renderers/angular/src/v0_9/index.ts similarity index 100% rename from renderers/angular/src/v0_9/public-api.ts rename to renderers/angular/src/v0_9/index.ts diff --git a/renderers/angular/src/v0_9/ng-package.json b/renderers/angular/src/v0_9/ng-package.json index ed278942e..bb6786ef9 100644 --- a/renderers/angular/src/v0_9/ng-package.json +++ b/renderers/angular/src/v0_9/ng-package.json @@ -1,6 +1,6 @@ { "$schema": "../../../node_modules/ng-packagr/ng-package.schema.json", "lib": { - "entryFile": "public-api.ts" + "entryFile": "index.ts" } } diff --git a/renderers/angular/src/v0_9/testing/public-api.ts b/renderers/angular/src/v0_9/testing/index.ts similarity index 100% rename from renderers/angular/src/v0_9/testing/public-api.ts rename to renderers/angular/src/v0_9/testing/index.ts diff --git a/renderers/angular/src/v0_9/testing/ng-package.json b/renderers/angular/src/v0_9/testing/ng-package.json index dba7877da..f7136414d 100644 --- a/renderers/angular/src/v0_9/testing/ng-package.json +++ b/renderers/angular/src/v0_9/testing/ng-package.json @@ -1,6 +1,6 @@ { "$schema": "../../../../../node_modules/ng-packagr/ng-package.schema.json", "lib": { - "entryFile": "public-api.ts" + "entryFile": "index.ts" } } diff --git a/renderers/angular/tsconfig.json b/renderers/angular/tsconfig.json index 4f752a043..6a8c2348c 100644 --- a/renderers/angular/tsconfig.json +++ b/renderers/angular/tsconfig.json @@ -18,10 +18,10 @@ "moduleResolution": "bundler", "types": ["jasmine"], "paths": { - "@a2ui/angular/v0_8": ["./src/v0_8/public-api.ts"], - "@a2ui/angular/v0_9": ["./src/v0_9/public-api.ts"], - "@a2ui/angular/v0_9/testing": ["./src/v0_9/testing/public-api.ts"], - "@a2ui/angular/testing": ["./src/v0_9/testing/public-api.ts"] + "@a2ui/angular/v0_8": ["./src/v0_8/index.ts"], + "@a2ui/angular/v0_9": ["./src/v0_9/index.ts"], + "@a2ui/angular/v0_9/testing": ["./src/v0_9/testing/index.ts"], + "@a2ui/angular/testing": ["./src/v0_9/testing/index.ts"] } }, "angularCompilerOptions": { diff --git a/samples/client/angular/projects/lib/ng-package.json b/samples/client/angular/projects/lib/ng-package.json index a2d1bdda6..e782d01fa 100644 --- a/samples/client/angular/projects/lib/ng-package.json +++ b/samples/client/angular/projects/lib/ng-package.json @@ -2,7 +2,7 @@ "$schema": "../../node_modules/ng-packagr/ng-package.schema.json", "dest": "../../dist/lib", "lib": { - "entryFile": "src/public-api.ts" + "entryFile": "src/index.ts" }, "allowedNonPeerDependencies": ["markdown-it", "@a2ui/web_core"] } diff --git a/samples/client/angular/tsconfig.json b/samples/client/angular/tsconfig.json index 3ec275872..cec680248 100644 --- a/samples/client/angular/tsconfig.json +++ b/samples/client/angular/tsconfig.json @@ -5,7 +5,7 @@ "noImplicitOverride": true, "noPropertyAccessFromIndexSignature": true, "paths": { - "@a2ui/angular-sample-lib": ["./projects/lib/src/public-api.ts"], + "@a2ui/angular-sample-lib": ["./projects/lib/src/index.ts"], "@a2ui/angular": ["../../../renderers/angular/dist"], "@a2ui/angular/*": ["../../../renderers/angular/dist/*"] }, diff --git a/samples/community/client/angular/projects/a2a-chat-canvas/ng-package.json b/samples/community/client/angular/projects/a2a-chat-canvas/ng-package.json index 8d0ac8874..1c04a7ce5 100644 --- a/samples/community/client/angular/projects/a2a-chat-canvas/ng-package.json +++ b/samples/community/client/angular/projects/a2a-chat-canvas/ng-package.json @@ -2,6 +2,6 @@ "$schema": "../../node_modules/ng-packagr/ng-package.schema.json", "dest": "dist", "lib": { - "entryFile": "src/public-api.ts" + "entryFile": "src/index.ts" } } diff --git a/samples/community/client/angular/projects/a2a-chat-canvas/src/public-api.ts b/samples/community/client/angular/projects/a2a-chat-canvas/src/index.ts similarity index 100% rename from samples/community/client/angular/projects/a2a-chat-canvas/src/public-api.ts rename to samples/community/client/angular/projects/a2a-chat-canvas/src/index.ts diff --git a/samples/community/mcp/a2ui-in-mcpapps/server/apps/editor/tsconfig.app.json b/samples/community/mcp/a2ui-in-mcpapps/server/apps/editor/tsconfig.app.json index 0f6b1a88b..8e6a5327e 100644 --- a/samples/community/mcp/a2ui-in-mcpapps/server/apps/editor/tsconfig.app.json +++ b/samples/community/mcp/a2ui-in-mcpapps/server/apps/editor/tsconfig.app.json @@ -15,7 +15,7 @@ "outDir": "./out-tsc/app", "types": [], "paths": { - "@a2ui/angular": ["../../../../../../renderers/angular/src/public-api.ts"], + "@a2ui/angular": ["../../../../../../renderers/angular/src/index.ts"], "@angular/*": ["./node_modules/@angular/*"] } }, diff --git a/samples/community/mcp/a2ui-in-mcpapps/server/apps/src/tsconfig.app.json b/samples/community/mcp/a2ui-in-mcpapps/server/apps/src/tsconfig.app.json index 0f6b1a88b..8e6a5327e 100644 --- a/samples/community/mcp/a2ui-in-mcpapps/server/apps/src/tsconfig.app.json +++ b/samples/community/mcp/a2ui-in-mcpapps/server/apps/src/tsconfig.app.json @@ -15,7 +15,7 @@ "outDir": "./out-tsc/app", "types": [], "paths": { - "@a2ui/angular": ["../../../../../../renderers/angular/src/public-api.ts"], + "@a2ui/angular": ["../../../../../../renderers/angular/src/index.ts"], "@angular/*": ["./node_modules/@angular/*"] } }, From 28581dbcbec371ba03839ebeb847eead7eb0c9e9 Mon Sep 17 00:00:00 2001 From: Jose Montes Date: Fri, 17 Jul 2026 19:56:47 +0000 Subject: [PATCH 2/6] Address feedback: explicitly export index --- renderers/angular/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renderers/angular/src/index.ts b/renderers/angular/src/index.ts index 101d51bf8..e2bcb6bfc 100644 --- a/renderers/angular/src/index.ts +++ b/renderers/angular/src/index.ts @@ -15,4 +15,4 @@ */ export const A2UI_ANGULAR_VERSION = '0.9.0'; -export * from './v0_8'; +export * from './v0_8/index'; From 47032241934ac334ecd2fe9234c788f4d41db450 Mon Sep 17 00:00:00 2001 From: Jose Montes Date: Fri, 17 Jul 2026 20:07:20 +0000 Subject: [PATCH 3/6] Restore public-api.ts wrappers for backwards compatibility --- renderers/angular/src/public-api.ts | 19 +++++++++++++++++++ renderers/angular/src/v0_8/public-api.ts | 19 +++++++++++++++++++ renderers/angular/src/v0_9/public-api.ts | 19 +++++++++++++++++++ .../angular/src/v0_9/testing/public-api.ts | 19 +++++++++++++++++++ .../a2a-chat-canvas/src/public-api.ts | 19 +++++++++++++++++++ 5 files changed, 95 insertions(+) create mode 100644 renderers/angular/src/public-api.ts create mode 100644 renderers/angular/src/v0_8/public-api.ts create mode 100644 renderers/angular/src/v0_9/public-api.ts create mode 100644 renderers/angular/src/v0_9/testing/public-api.ts create mode 100644 samples/community/client/angular/projects/a2a-chat-canvas/src/public-api.ts diff --git a/renderers/angular/src/public-api.ts b/renderers/angular/src/public-api.ts new file mode 100644 index 000000000..3e92531c0 --- /dev/null +++ b/renderers/angular/src/public-api.ts @@ -0,0 +1,19 @@ +/** + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +// Kept for backwards compatibility. +// Please import from `./index` instead. +export * from './index'; diff --git a/renderers/angular/src/v0_8/public-api.ts b/renderers/angular/src/v0_8/public-api.ts new file mode 100644 index 000000000..3e92531c0 --- /dev/null +++ b/renderers/angular/src/v0_8/public-api.ts @@ -0,0 +1,19 @@ +/** + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +// Kept for backwards compatibility. +// Please import from `./index` instead. +export * from './index'; diff --git a/renderers/angular/src/v0_9/public-api.ts b/renderers/angular/src/v0_9/public-api.ts new file mode 100644 index 000000000..3e92531c0 --- /dev/null +++ b/renderers/angular/src/v0_9/public-api.ts @@ -0,0 +1,19 @@ +/** + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +// Kept for backwards compatibility. +// Please import from `./index` instead. +export * from './index'; diff --git a/renderers/angular/src/v0_9/testing/public-api.ts b/renderers/angular/src/v0_9/testing/public-api.ts new file mode 100644 index 000000000..3e92531c0 --- /dev/null +++ b/renderers/angular/src/v0_9/testing/public-api.ts @@ -0,0 +1,19 @@ +/** + * Copyright 2026 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +// Kept for backwards compatibility. +// Please import from `./index` instead. +export * from './index'; diff --git a/samples/community/client/angular/projects/a2a-chat-canvas/src/public-api.ts b/samples/community/client/angular/projects/a2a-chat-canvas/src/public-api.ts new file mode 100644 index 000000000..9ebf600b1 --- /dev/null +++ b/samples/community/client/angular/projects/a2a-chat-canvas/src/public-api.ts @@ -0,0 +1,19 @@ +/** + * Copyright 2025 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +// Kept for backwards compatibility. +// Please import from `./index` instead. +export * from './index'; From 68cc6b70073e4a74677c16a5cd7ba03874331285 Mon Sep 17 00:00:00 2001 From: Jose Montes Date: Fri, 17 Jul 2026 20:08:00 +0000 Subject: [PATCH 4/6] Update CHANGELOG for entry point standardization --- renderers/angular/CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/renderers/angular/CHANGELOG.md b/renderers/angular/CHANGELOG.md index f0f1dea62..ac1a27d98 100644 --- a/renderers/angular/CHANGELOG.md +++ b/renderers/angular/CHANGELOG.md @@ -1,5 +1,7 @@ ## Unreleased +- Standardize package entry points to `index.ts` while maintaining `public-api.ts` wrappers for backward compatibility. + ## 0.10.4 - (v0_9) Normalize Safari placeholder text color for `DateTimeInput` by updating CSS selectors for `.a2ui-date-time-input`. [#1795](https://github.com/a2ui-project/a2ui/pull/1795) From 3fb787b4aeb7e71429a0e94697eecd368a8a7e13 Mon Sep 17 00:00:00 2001 From: Jose Montes Date: Mon, 20 Jul 2026 17:43:37 +0000 Subject: [PATCH 5/6] Address review comments: remove root index.ts migration, add deprecation warnings, delete sample public-api.ts --- renderers/angular/ng-package.json | 2 +- renderers/angular/src/index.ts | 18 ------------------ renderers/angular/src/public-api.ts | 6 +++--- renderers/angular/src/v0_8/public-api.ts | 6 ++++-- renderers/angular/src/v0_9/public-api.ts | 6 ++++-- .../angular/src/v0_9/testing/public-api.ts | 6 ++++-- .../a2a-chat-canvas/src/public-api.ts | 19 ------------------- 7 files changed, 16 insertions(+), 47 deletions(-) delete mode 100644 renderers/angular/src/index.ts delete mode 100644 samples/community/client/angular/projects/a2a-chat-canvas/src/public-api.ts diff --git a/renderers/angular/ng-package.json b/renderers/angular/ng-package.json index f727dd5ae..37f030ef2 100644 --- a/renderers/angular/ng-package.json +++ b/renderers/angular/ng-package.json @@ -2,7 +2,7 @@ "$schema": "../../node_modules/ng-packagr/ng-package.schema.json", "dest": "./dist", "lib": { - "entryFile": "src/index.ts" + "entryFile": "src/public-api.ts" }, "allowedNonPeerDependencies": ["@a2ui/web_core", "zod"] } diff --git a/renderers/angular/src/index.ts b/renderers/angular/src/index.ts deleted file mode 100644 index e2bcb6bfc..000000000 --- a/renderers/angular/src/index.ts +++ /dev/null @@ -1,18 +0,0 @@ -/** - * Copyright 2026 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -export const A2UI_ANGULAR_VERSION = '0.9.0'; -export * from './v0_8/index'; diff --git a/renderers/angular/src/public-api.ts b/renderers/angular/src/public-api.ts index 3e92531c0..1f208d46a 100644 --- a/renderers/angular/src/public-api.ts +++ b/renderers/angular/src/public-api.ts @@ -14,6 +14,6 @@ * limitations under the License. */ -// Kept for backwards compatibility. -// Please import from `./index` instead. -export * from './index'; +export const A2UI_ANGULAR_VERSION = '0.9.0'; +export * from './v0_8/public-api'; + diff --git a/renderers/angular/src/v0_8/public-api.ts b/renderers/angular/src/v0_8/public-api.ts index 3e92531c0..e2d57d422 100644 --- a/renderers/angular/src/v0_8/public-api.ts +++ b/renderers/angular/src/v0_8/public-api.ts @@ -14,6 +14,8 @@ * limitations under the License. */ -// Kept for backwards compatibility. -// Please import from `./index` instead. +/** + * @deprecated Please import from `./index` instead. Will be removed in v1.0. + */ export * from './index'; + diff --git a/renderers/angular/src/v0_9/public-api.ts b/renderers/angular/src/v0_9/public-api.ts index 3e92531c0..e2d57d422 100644 --- a/renderers/angular/src/v0_9/public-api.ts +++ b/renderers/angular/src/v0_9/public-api.ts @@ -14,6 +14,8 @@ * limitations under the License. */ -// Kept for backwards compatibility. -// Please import from `./index` instead. +/** + * @deprecated Please import from `./index` instead. Will be removed in v1.0. + */ export * from './index'; + diff --git a/renderers/angular/src/v0_9/testing/public-api.ts b/renderers/angular/src/v0_9/testing/public-api.ts index 3e92531c0..e2d57d422 100644 --- a/renderers/angular/src/v0_9/testing/public-api.ts +++ b/renderers/angular/src/v0_9/testing/public-api.ts @@ -14,6 +14,8 @@ * limitations under the License. */ -// Kept for backwards compatibility. -// Please import from `./index` instead. +/** + * @deprecated Please import from `./index` instead. Will be removed in v1.0. + */ export * from './index'; + diff --git a/samples/community/client/angular/projects/a2a-chat-canvas/src/public-api.ts b/samples/community/client/angular/projects/a2a-chat-canvas/src/public-api.ts deleted file mode 100644 index 9ebf600b1..000000000 --- a/samples/community/client/angular/projects/a2a-chat-canvas/src/public-api.ts +++ /dev/null @@ -1,19 +0,0 @@ -/** - * Copyright 2025 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// Kept for backwards compatibility. -// Please import from `./index` instead. -export * from './index'; From 284be99537056becde5dbcb7257e137a9320f209 Mon Sep 17 00:00:00 2001 From: Jose Montes Date: Mon, 20 Jul 2026 17:51:30 +0000 Subject: [PATCH 6/6] Fix formatting issues in public-api.ts files --- renderers/angular/src/public-api.ts | 1 - renderers/angular/src/v0_8/public-api.ts | 1 - renderers/angular/src/v0_9/public-api.ts | 1 - renderers/angular/src/v0_9/testing/public-api.ts | 1 - 4 files changed, 4 deletions(-) diff --git a/renderers/angular/src/public-api.ts b/renderers/angular/src/public-api.ts index 1f208d46a..1426dd356 100644 --- a/renderers/angular/src/public-api.ts +++ b/renderers/angular/src/public-api.ts @@ -16,4 +16,3 @@ export const A2UI_ANGULAR_VERSION = '0.9.0'; export * from './v0_8/public-api'; - diff --git a/renderers/angular/src/v0_8/public-api.ts b/renderers/angular/src/v0_8/public-api.ts index e2d57d422..3f73bea50 100644 --- a/renderers/angular/src/v0_8/public-api.ts +++ b/renderers/angular/src/v0_8/public-api.ts @@ -18,4 +18,3 @@ * @deprecated Please import from `./index` instead. Will be removed in v1.0. */ export * from './index'; - diff --git a/renderers/angular/src/v0_9/public-api.ts b/renderers/angular/src/v0_9/public-api.ts index e2d57d422..3f73bea50 100644 --- a/renderers/angular/src/v0_9/public-api.ts +++ b/renderers/angular/src/v0_9/public-api.ts @@ -18,4 +18,3 @@ * @deprecated Please import from `./index` instead. Will be removed in v1.0. */ export * from './index'; - diff --git a/renderers/angular/src/v0_9/testing/public-api.ts b/renderers/angular/src/v0_9/testing/public-api.ts index e2d57d422..3f73bea50 100644 --- a/renderers/angular/src/v0_9/testing/public-api.ts +++ b/renderers/angular/src/v0_9/testing/public-api.ts @@ -18,4 +18,3 @@ * @deprecated Please import from `./index` instead. Will be removed in v1.0. */ export * from './index'; -