provider 1190 operations 47 docs pages
@utdk/github
GitHub v3 REST API
Generated UTDK provider client for GitHub v3 REST API. GitHub's v3 REST API.
Emojis
Optional generated docs page for
@utdk/github.
Emojis
Use these operations through the generated client (not direct HTTP calls).
Import path: @utdk/github
Operations
github.emojis.get
- HTTP:
GET /emojis - What it does: Get emojis
- OpenAPI operationId:
emojis/get - Path params: None
- Query params: None
- Response codes:
200,304 - Transport options: None
- Source: OpenAPI reference
- TypeScript: Client interface
Inputs
- Client input type:
{ [key: string]: unknown } - Client transport options: None
Outputs
- Client return type:
{ [key: string]: unknown } - OpenAPI response codes:
200,304
import github from "@utdk/github";
type EmojisGetInput = Parameters<typeof github.emojis.get> extends [infer T, ...unknown[]] ? T : undefined;
type EmojisGetOutput = Awaited<ReturnType<typeof github.emojis.get>>;
const result: EmojisGetOutput = await github.emojis.get();
// Result shape (from schema): { [key: string]: unknown }