UNPKG

@upstart.gg/sdk

Version:

You can test the CLI without recompiling by running:

17 lines (14 loc) 469 B
import type { PageAttributes } from "../attributes"; export type DatasourceFetcherParams< OAuthProps = unknown, Opts extends Record<string, unknown> = Record<string, unknown>, > = { options: Opts; oauth: OAuthProps; pageAttributes?: PageAttributes; }; export type DatasourceFetcher< T = unknown, OAuthOpts = unknown, Opts extends Record<string, unknown> = Record<string, unknown>, > = (params: DatasourceFetcherParams<OAuthOpts, Opts>) => Promise<T>;