-
Notifications
You must be signed in to change notification settings - Fork 373
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
17 changed files
with
1,540 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
## API Report File for "firebase-admin.functions" | ||
|
||
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). | ||
```ts | ||
|
||
/// <reference types="node" /> | ||
|
||
import { Agent } from 'http'; | ||
|
||
// @public | ||
export interface AbsoluteDelivery { | ||
// @alpha (undocumented) | ||
scheduleDelaySeconds?: never; | ||
scheduleTime?: Date; | ||
} | ||
|
||
// @public | ||
export interface DelayDelivery { | ||
scheduleDelaySeconds?: number; | ||
// @alpha (undocumented) | ||
scheduleTime?: never; | ||
} | ||
|
||
// @public | ||
export type DeliverySchedule = DelayDelivery | AbsoluteDelivery; | ||
|
||
// @public | ||
export class Functions { | ||
// Warning: (ae-forgotten-export) The symbol "App" needs to be exported by the entry point index.d.ts | ||
// | ||
// (undocumented) | ||
readonly app: App; | ||
taskQueue<Args = Record<string, any>>(functionName: string, extensionId?: string): TaskQueue<Args>; | ||
} | ||
|
||
// @public | ||
export function getFunctions(app?: App): Functions; | ||
|
||
// @public | ||
export type TaskOptions = DeliverySchedule & TaskOptionsExperimental & { | ||
dispatchDeadlineSeconds?: number; | ||
}; | ||
|
||
// @public | ||
export interface TaskOptionsExperimental { | ||
// @beta | ||
uri?: string; | ||
} | ||
|
||
// @public | ||
export class TaskQueue<Args = Record<string, any>> { | ||
enqueue(data: Args, opts?: TaskOptions): Promise<void>; | ||
} | ||
|
||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.