You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
762 B

4 years ago
  1. export declare function getOption(options: any, key: any, defaultValue: any): any;
  2. export declare function getUnionOfKeys(...args: any[]): any;
  3. export declare function comparePos(pos1: any, pos2: any): number;
  4. export declare function copyPos(pos: any): {
  5. line: any;
  6. column: any;
  7. };
  8. export declare function composeSourceMaps(formerMap: any, latterMap: any): any;
  9. export declare function getTrueLoc(node: any, lines: any): {
  10. start: any;
  11. end: any;
  12. } | null;
  13. export declare function fixFaultyLocations(node: any, lines: any): void;
  14. export declare function isExportDeclaration(node: any): boolean;
  15. export declare function getParentExportDeclaration(path: any): any;
  16. export declare function isTrailingCommaEnabled(options: any, context: any): boolean;