interface SoftDeleteOptions {
    base_url?: string;
    committer: AuthorOrCommitter;
    log?: Log;
    name?: string;
    owner: string;
    repo: string;
    token?: string;
    urlToLocation: (
        ...param: [string],
    ) => { store: string; store_deleted?: string; website: string };
}

Properties

base_url?: string
committer: AuthorOrCommitter
log?: Log
name?: string
owner: string
repo: string
token?: string
urlToLocation: (
    ...param: [string],
) => { store: string; store_deleted?: string; website: string }