import { DurableObjectLocationHint } from "@cloudflare/workers-types"; import { isly } from "isly"; export interface Creatable { name: string; location?: Creatable.Location; } export declare namespace Creatable { type Location = (typeof Location.values)[number]; namespace Location { const values: readonly ["north-east-america", "west-europe"]; function toCloudflare(value: Location): DurableObjectLocationHint; const type: isly.Type<"north-east-america" | "west-europe">; } const type: import("isly/dist/cjs/object").IslyObject; }