/*
 * Copyright (c) Microsoft Corporation.
 * Licensed under the MIT License.
 *
 * Code generated by Microsoft (R) AutoRest Code Generator.
 * Changes may cause incorrect behavior and will be lost if the code is regenerated.
 */

import {
  Enum233,
  RepositoriesListOptionalParams,
  RepositoriesListResponse
} from "../models";

/** Interface representing a Repositories. */
export interface Repositories {
  /**
   * Gets the repositories available from the source code host
   * @param sourceHost The source host
   * @param ownerName The name of the owner
   * @param appName The name of the application
   * @param options The options parameters.
   */
  list(
    sourceHost: Enum233,
    ownerName: string,
    appName: string,
    options?: RepositoriesListOptionalParams
  ): Promise<RepositoriesListResponse>;
}
