Interface CreateGistData

Body for creating a new gist.

interface CreateGistData {
    description?: string;
    files: Record<string, GistFileInput>;
    public?: boolean;
}

Properties

description?: string

Short description

files: Record<string, GistFileInput>

Map of filename to file input

public?: boolean

Whether the gist should be public