| 421 | readonly name?: string; |
| 422 | }; |
| 423 | interface DurableObjectId { |
| 424 | toString(): string; |
| 425 | equals(other: DurableObjectId): boolean; |
| 426 | readonly name?: string; |
| 427 | } |
| 428 | interface DurableObjectNamespace<T extends Rpc.DurableObjectBranded | undefined = undefined> { |
| 429 | newUniqueId(options?: DurableObjectNamespaceNewUniqueIdOptions): DurableObjectId; |
| 430 | idFromName(name: string): DurableObjectId; |
no outgoing calls
no test coverage detected