Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

InstallationAuthOptionsWithFactory

type InstallationAuthOptionsWithFactory<T> = {
[key: string]: unknown;
type: "installation";
installationId?: number | string;
repositoryIds?: number[];
repositoryNames?: string[];
permissions?: Permissions;
refresh?: boolean;
factory: FactoryInstallation<T>;
}
;

§Type Parameters

§Type

§
{
[key: string]: unknown;
type: "installation";
installationId?: number | string;
repositoryIds?: number[];
repositoryNames?: string[];
permissions?: Permissions;
refresh?: boolean;
factory: FactoryInstallation<T>;
}
[src]