Skip to content

converting comments to jsdoc #5

@chiptus

Description

@chiptus

as the title says, if I have the following struct:

// Foo is used to check items
type Foo struct {
    // ID is an id
   ID string
}

would be nice to convert it to this:

/**
 * Foo is used to check items
 */
interface Foo {
   /**
     * ID is an id
     */
	ID: string;
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions