sort-js-object-keys icon indicating copy to clipboard operation
sort-js-object-keys copied to clipboard

Request: Sort Typescript types

Open craig-dae opened this issue 4 years ago • 1 comments

Provide support to sort the following:

export interface Example {
  a: string;
  c: string;
  b: string;
}

craig-dae avatar Aug 11 '20 14:08 craig-dae

Hello @craig-dae, do you mind reformatting your request so that it includes TS interfaces as well as enums

export enum myEnum {
    someKey1 = someValue1,
    someKey2 = someValue2,
}

EliasTouil avatar Dec 22 '20 16:12 EliasTouil