Skip to content

Renaming types #405

Description

@Mike-Dax

I have a series of documents which look like this:

{
  "name": "useMessageIDSeenTimestamp",
  "parameters": [{ "name": "messageID", "type": "MessageID" }],
  "module": "@electricui/components-core",
  "returnType": "number | null"
}

However I'm having trouble typing the parameters field well enough. Using a nested type, the type parameter is overwritten:

{
  "name": "useMessageIDSeenTimestamp",
  "module": "@electricui/components-core",
  "parameters": [
    {
      "name": "messageID",
      "type": "Parameter",
      "_raw": {}
    }
  ]
}

Currently we're just using the json type and the TypeScript type is reverting to any, which gives us the data but means we lose TypeScript typing.

Is there a way to 'rename' my type parameter to something like tsType, to avoid having to do it upstream?

Activity

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

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions