Interface UpdateGistData

Body for updating an existing gist.

interface UpdateGistData {
    description?: string;
    files?: Record<string, null | GistFileInput>;
}

Properties

Properties

description?: string

Updated description

files?: Record<string, null | GistFileInput>

Map of filename to file input. Set content to empty string to delete a file.