* See * https://firebase.google.com/docs/reference/hosting/rest/v1beta1/projects.sites#Site
| 21 | * https://firebase.google.com/docs/reference/hosting/rest/v1beta1/projects.sites#Site |
| 22 | */ |
| 23 | interface Site { |
| 24 | name: string; |
| 25 | defaultUrl: string; |
| 26 | appId?: string; |
| 27 | labels?: Record<string, string>; |
| 28 | type: "DEFAULT_SITE" | "USER_SITE" | "SITE_UNSPECIFIED"; |
| 29 | } |
| 30 | |
| 31 | interface ListSitesResponse { |
| 32 | sites: Site[]; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…