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

Source

import type { Source } from "https://googleapis.deno.dev/v1/cloudfunctions:v2.ts";

The location of the function source code.

interface Source {
gitUri?: string;
repoSource?: RepoSource;
storageSource?: StorageSource;
}

§Properties

§
gitUri?: string
[src]

If provided, get the source from GitHub repository. This option is valid only for GCF 1st Gen function. Example: https://github.com///blob//

§
repoSource?: RepoSource
[src]

If provided, get the source from this location in a Cloud Source Repository.

§
storageSource?: StorageSource
[src]

If provided, get the source from this location in Google Cloud Storage.