sortier
Version:
An opinionated code sorter
8 lines (7 loc) • 348 B
TypeScript
import { SortierOptions } from "../../config/index.js";
import { ILanguage } from "../../language.js";
export declare class Reprinter implements ILanguage {
static readonly EXTENSIONS: string[];
getRewrittenContents(filename: string, fileContents: string, options: SortierOptions): string;
isFileSupported(filename: string): boolean;
}