How should Vue filters be bound using TypeScript? It is fairly straightforward with pure js, but I'm running into issue converting it to TypeScript. The code an
I've currently implemented the file uploading using <input> and for some reason when I try to change the file after already chosen the file. The website w
The question is can enum be used as a key type instead of only "number" or "string" ? Currently it seems like the only possible declaration is x:{[key:number]:a
I have a ngrx/store (v2.2.2) and rxjs (v5.1.0) based application that listens to a web socket for incoming data using an observable. When I start the applicati
I made an enum with Typescript to use in MyService.service.ts MyComponent.component.ts and MyComponent.component.html. export enum ConnectionResult { Succ
Is it possible to add functions to an Enum type in TypeScript? for example: enum Mode { landscape, portrait, // the dream... toString() { co
I have Records type of Record: export interface List { name: string; title: string; } export type RecordType = 'recordOne' | 'recordTwo' | 'recordThree';
I'm trying to check if my user isLoggedIn with a query from GraphQL API data from the user if it's loggedin if not it's supposed to return undefined or some err
I'm working on an esbuild configuration and want to copy a file (manifest.json) to a specific folder when I build my project for testing purposes. I included th
I have created a project framework using Typescript and Cucumber BDD approach. The executions within the project are working and the cucumber html reports are a
I am trying to create a carousel in angular using swiper (https://swiperjs.com/angular). I get this error: Error: node_modules/swiper/angular/angular/src/swiper
I have a mobile app written in Flutter that stores an intermediate cert. Other mobile clients can send certificates to this device and it should decide whether
I work with WebStorm 2016.2.2, TypeScript 2.1, Node.js. For some reason, isNan is declared as a function that only accepts a number: declare function isNaN(nu
I have the following interface and code. I thought I was doing the definitions correctly but I am getting an error: interface IenumServiceGetOrderBy { id: numb
Using class-validator along with NestJS I want to validate that a user provides either propertyA or a propertyB but they don't need to provide both. Currently,
I am using ipfs-http-client to read the contents of a file form infura, how do i use the "cat" funtionality to correctly get the data in a string/json format?
I am trying to configure eslint for my REACT-TypeScript project. It was previously using tslint which is going to deprecate soon. I have gone through the web an
I am using NightWatch for my e2e testing and want to move towards ES6 way of writing tests. I was able to do it with Babel and it worked fine but I want to use
Am getting typescript error when i extend th TextProps from react-native and pass it to the Text component created by styled-component Overload 1 of 2, '(prop
I'm new to Pixi.js but I have some past experience with TypeScript. I'm really struggling to import Pixi.js into my project. I got a small Pixi.js project runni