index.d.ts 822 B

1234567891011121314151617
  1. import { ProjectAttributes, Tag } from '../../../lib/types';
  2. import { MethodArgs } from '../../args';
  3. export default function monitor(...args0: MethodArgs): Promise<any>;
  4. export declare function validateProjectAttributes(options: any): void;
  5. export declare function generateProjectAttributes(options: any): ProjectAttributes;
  6. /**
  7. * Parse CLI --tags options into an internal data structure.
  8. *
  9. * If this returns undefined, it means "do not touch the existing tags on the project".
  10. *
  11. * Anything else means "replace existing tags on the project with this list" even if empty.
  12. *
  13. * @param options CLI options
  14. * @returns List of parsed tags or undefined if they are to be left untouched.
  15. */
  16. export declare function generateTags(options: any): Tag[] | undefined;
  17. export declare function validateTags(options: any): void;