UNPKG

sortier

Version:
9 lines (8 loc) 372 B
export type SortContentsOptions = Partial<SortContentsOptionsRequired>; type SortContentsOptionsRequired = { isAscending: boolean; order: "alpha" | "usage"; overrides: Array<string>; }; export declare function sortContents(className: undefined | string, classItems: any[], comments: any, fileContents: string, options: SortContentsOptions): string; export {};