I have the following endpoint setup to reset a database after test runs: import { getConnection } from 'typeorm'; import express from 'express'; const router =
in react-native, when I try to pass parameters to functions/components/etc, typescript files will always complain and it won't work until I have specified the t
i am very new to Angular and trying to follow an anugular tutorial where he passes an object to app-add-edit-dep component on a modal in show-dep.component.html
I have a routing module that has a LoginComponent on the login page I want to hide the <app-nav-menu></app-nav-menu> when not logged in. I have trie
I have tried to read how to delete a property from an object in here: How do I remove a property from a JavaScript object? it should use delete, I try it like t
I have below listener added for which I am trying to write test using Jest. However, it seems as though the event I'm dispatching doesn't reach my code. window.
I have used a query in typeorm using query builder as: getManager().CreateQueryBuilder(class_name_from_entity_file, 'xyz').select('column_name').where('active_s
Let's say I have a legacy codebase with a .js file that looks like this: // myFile.js export const returnStuff = () => 'stuff'; Now I want to add functional
The problem is quite simple: add two functions to the HTMLElement which is on and off. The on functions works exact same as addEventListener The off functions w
I have TypeScript tests running with Yarn and Mocha and they work fine locally. When I deploy via CircleCI, however, I get this: 1) Uncaught error outside test
Method: get statusEnum(): StatusEnum { return StatusEnum; } Enum: export enum StatusEnum { Open = 0, Edit = 1 } error: TS2322: Type 'typeof S
I'm trying to build a React component library built on top of MUI and using Storybook and TypeScript. Because Storybook (which uses create-react-app) is based o
I'm trying to build a React component library built on top of MUI and using Storybook and TypeScript. Because Storybook (which uses create-react-app) is based o
In my angular application I am trying to send a jwt token as a header in order to authorize my app for requests. But I am getting an error 500 because I am send
I've added parcel to a create-react-app project that uses the typescript template. I'm trying to add svgs to my outputted js file following the recommendations
I love working with TypeScript in VSCode and seeing all the errors automatically pop up with red underlining. I even set "typescript.tsserver.experimental.enabl
I was trying to use 'faker' with TypeScript in TestCafe Studio. But I'm getting an error saying Cannot find module 'faker' or its corresponding type declaration
I have a Vue3 component (using TS) in which I'm trying to render another component inside it like this: TopBar.vue <template> <TopBarProfileDropdown /&
render() { return ( <Host> <div> I don't understand this syntax. Stencil is written in typescript file. As a a parameter return
When I was solving a problem on Leetcode, I've defined an empty array. I tried push some numbers then I got this Error. I don't know why. My code here.