This is an automated email from the ASF dual-hosted git repository.
robin0716 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-answer-plugins.git
The following commit(s) were added to refs/heads/main by this push:
new b3ef1c1 refactor(types): Add a new line for improved readability in
Request interface
b3ef1c1 is described below
commit b3ef1c142bbe416533c8ac73ab9bfeb71f7527ef
Author: robin <[email protected]>
AuthorDate: Fri Nov 15 16:06:18 2024 +0800
refactor(types): Add a new line for improved readability in Request
interface
---
embed-basic/types.ts | 1 +
1 file changed, 1 insertion(+)
diff --git a/embed-basic/types.ts b/embed-basic/types.ts
index afbc831..537f15b 100644
--- a/embed-basic/types.ts
+++ b/embed-basic/types.ts
@@ -16,6 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
+
export interface Request {
get: (url: string) => Promise<any>;
}