Home > Enterprise >  Why am I am getting "Cannot find name 'function name' error"?
Why am I am getting "Cannot find name 'function name' error"?

Time:03-09

So I added this function below to my ts class:

 private get(iD: string): Promise <Function> => async () => {
        const tallConfig = await longCrudService.getHalf(iD);
        const stream: Stream = tallConfig.stream;
        const response = this.createUrl(tallConfig, stream);
        return response;
    }

But as soon as I add it, every other functions/Methods below it starts throwing this error: "Cannot find name 'function name'". Did I add it the wrong way?. I'm still trying to get a hold of typescript.

CodePudding user response:

private get = async (id: string): Promise<Function> => {

or

private get: (iD: string) => Promise<Function> = async (iD: string) => {

CodePudding user response:

What you are actually declaring here is a method. Declaring methods with arrow syntax goes like this:

private methodName = (param: ParamType): TypeOfReturnable => {
    // remember to return something of type TypeOfReturnable
}
  • Related