interface GetOptions {
    base_url: string;
    log?: Log;
    owner: string;
    path?: string;
    ref?: string;
    repo: string;
    token: string;
}

Hierarchy

  • SharedConfig
    • GetOptions

Properties

base_url: string
log?: Log
owner: string
path?: string

If you omit the path parameter, you will receive the contents of the repository's root directory.

ref?: string

The name of the commit/branch/tag.

repo: string
token: string