Skip to content

When multiple indexablees, only the first indexable is displayed #2470

Closed
@steve02081504

Description

@steve02081504
Contributor

Search terms

Indexable muti

Expected Behavior

https://github.com/ukatech/jsstp-lib/blob/2cb88bcf51053b4c6b16a8cdaa613932e5779c7d/dist/en/jsstp.d.ts#L485L505

/**
 * Matches event names to generate a simple invoker
 * @group Index reflections
 * @example
 * let data=await jsstp.OnTest(123,"abc");
 */
[key: `On${string}`]: simple_event_caller;
/**
 * Matches event names to generate a simple invoker
 * @group Index reflections
 * @example
 * let data=await jsstp.GetNames();
 */
[key: `Get${string}`]: simple_list_command_caller;
/**
 * Matches event names to generate a simple invoker
 * @group Index reflections
 * @example
 * let data=await jsstp.SetCookie("abc","def");
 */
[key: `Set${string}`]: simple_command_caller;

The document should show all 3 indexables.

Actual Behavior

https://ukatech.github.io/jsstp-lib/doc/EN/classes/jsstp_t.html
just first one

Steps to reproduce the bug

class cla {
[key: `1${string}`]: number;
[key: `2${string}`]: string;
}

maybe this

Environment

Activity

Gerrit0

Gerrit0 commented on Jan 2, 2024

@Gerrit0
Collaborator

Hey, someone finally noticed, only took ~9 years!

added this to the v0.26.0 milestone on Jan 12, 2024
added a commit that references this issue on Mar 17, 2024
2e4eed3
Gerrit0

Gerrit0 commented on Jun 16, 2024

@Gerrit0
Collaborator

Fixed with TypeDoc 0.26, which is releasing 2024/06/21

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    Projects

    No projects

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @Gerrit0@steve02081504

        Issue actions

          When multiple indexablees, only the first indexable is displayed · Issue #2470 · TypeStrong/typedoc