sort-js-object-keys
sort-js-object-keys copied to clipboard
Request: Sort Typescript types
Provide support to sort the following:
export interface Example {
a: string;
c: string;
b: string;
}
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,
}