interface CreateOrUpdateOptions {
    author?: AuthorOrCommitter;
    base_url: string;
    branch?: string;
    committer: AuthorOrCommitter;
    content: string;
    log?: Log;
    owner: string;
    path: string;
    repo: string;
    sha?: string;
    token: string;
}

Hierarchy

  • SharedConfig
    • CreateOrUpdateOptions

Properties

base_url: string
branch?: string
content: string
log?: Log
owner: string
path: string
repo: string
sha?: string
token: string