index.d.ts 636 B

1234567891011121314151617181920212223242526
  1. declare const _exports: {
  2. convert: (request: any, options: any, callback: any) => void;
  3. getOptions: () => ({
  4. name: string;
  5. id: string;
  6. type: string;
  7. default: boolean;
  8. description: string;
  9. availableOptions?: undefined;
  10. } | {
  11. name: string;
  12. id: string;
  13. availableOptions: string[];
  14. type: string;
  15. default: string;
  16. description: string;
  17. } | {
  18. name: string;
  19. id: string;
  20. type: string;
  21. default: number;
  22. description: string;
  23. availableOptions?: undefined;
  24. })[];
  25. };
  26. export = _exports;