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;