(key: string, options: R2GetOptions & {
onlyIf: R2Conditional | Headers;
})
| 2023 | interface R2Bucket { |
| 2024 | head(key: string): Promise<R2Object | null>; |
| 2025 | get(key: string, options: R2GetOptions & { |
| 2026 | onlyIf: R2Conditional | Headers; |
| 2027 | }): Promise<R2ObjectBody | R2Object | null>; |
| 2028 | get(key: string, options?: R2GetOptions): Promise<R2ObjectBody | null>; |
no outgoing calls