TypeScript typings for Firebase Hosting API v1
The Firebase Hosting REST API enables programmatic and customizable management and deployments to your Firebase-hosted sites. Use this REST API to create and manage channels and sites as well as to deploy new or updated hosting configurations and content files.
For detailed description please check documentation.
Installing
Install typings for Firebase Hosting API:
npm install @types/gapi.client.firebasehosting@v1 --save-dev
Usage
You need to initialize Google API client in your code:
gapi.load('client', () => {
});
Then load api client wrapper:
gapi.client.load('firebasehosting', 'v1', () => {
});
After that you can use Firebase Hosting API resources:
await gapi.client.firebasehosting.operations.cancel({ name: "name", });
await gapi.client.firebasehosting.operations.delete({ name: "name", });
operations`. To override the binding, API services can add a binding such as `"/v1/{name=users/*}/operations"` to their service configuration. For backwards compatibility, the default name includes the operations collection id, however overriding users must ensure the name binding is the parent resource, without the operations collection id.
*/
await gapi.client.firebasehosting.operations.list({ name: "name", });