| 468 | readonly name?: string; |
| 469 | }; |
| 470 | interface DurableObjectId { |
| 471 | toString(): string; |
| 472 | equals(other: DurableObjectId): boolean; |
| 473 | readonly name?: string; |
| 474 | } |
| 475 | declare abstract class DurableObjectNamespace<T extends Rpc.DurableObjectBranded | undefined = undefined> { |
| 476 | newUniqueId(options?: DurableObjectNamespaceNewUniqueIdOptions): DurableObjectId; |
| 477 | idFromName(name: string): DurableObjectId; |
no outgoing calls
no test coverage detected