Skip to content

Converts Promise results to any #3

@JanFellner

Description

@JanFellner
class myobject {
	public async compare(other: myobject): Promise<boolean> {
		return true;
	}
}

current output:

export interface Imyobject {
    compare(other: Imyobject): any;
}

expected output:

export interface Imyobject {
    compare(other: Imyobject): Promise<boolean>;
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions