My dotfiles
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

6 строки
493 B

  1. import { Edit, FormattingOptions, JSONPath } from './main';
  2. export declare function removeProperty(text: string, path: JSONPath, formattingOptions: FormattingOptions): Edit[];
  3. export declare function setProperty(text: string, path: JSONPath, value: any, formattingOptions: FormattingOptions, getInsertionIndex?: (properties: string[]) => number): Edit[];
  4. export declare function applyEdit(text: string, edit: Edit): string;
  5. export declare function isWS(text: string, offset: number): boolean;