My dotfiles
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

6 wiersze
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;