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.

10 lines
233 B

  1. export class Catalog {
  2. constructor(
  3. readonly name: string,
  4. readonly example: string,
  5. readonly properties: object,
  6. readonly taskId: string,
  7. readonly displayName: string,
  8. readonly acceptTypes: string
  9. ) {}
  10. }