Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add shorthand properties reference to public API #6168

Merged
merged 7 commits into from
Jun 27, 2022

Commits on Jun 23, 2022

  1. Expose shorthand properties reference as public API

    The type definition is generated by the following script:
    
    ```js
    const shorthandData = require("./lib/reference/shorthandData")
    console.log('export type ShorthandData = {')
    for (const key of Object.keys(shorthandData)) {
    	console.log(`\t'${key}': Set<string>;`)
    }
    console.log('};')
    ```
    ybiquitous committed Jun 23, 2022
    Configuration menu
    Copy the full SHA
    d12beec View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7074058 View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2022

  1. Configuration menu
    Copy the full SHA
    166e0e4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    394a760 View commit details
    Browse the repository at this point in the history
  3. Refactor for readability

    ybiquitous committed Jun 25, 2022
    Configuration menu
    Copy the full SHA
    b6c2e38 View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2022

  1. Use Map instead of Object

    ybiquitous committed Jun 27, 2022
    Configuration menu
    Copy the full SHA
    e6adad8 View commit details
    Browse the repository at this point in the history
  2. Use ReadonlySet

    ybiquitous committed Jun 27, 2022
    Configuration menu
    Copy the full SHA
    1e374a3 View commit details
    Browse the repository at this point in the history