| 411 | readonly name?: string; |
| 412 | }; |
| 413 | interface DurableObjectId { |
| 414 | toString(): string; |
| 415 | equals(other: DurableObjectId): boolean; |
| 416 | readonly name?: string; |
| 417 | } |
| 418 | interface DurableObjectNamespace<T extends Rpc.DurableObjectBranded | undefined = undefined> { |
| 419 | newUniqueId(options?: DurableObjectNamespaceNewUniqueIdOptions): DurableObjectId; |
| 420 | idFromName(name: string): DurableObjectId; |
no outgoing calls
no test coverage detected