A result of parsing an URI.
{ readonly type: "actor"; readonly identifier: string; readonly handle: string; }
| { readonly type: "object"; readonly class: (new (...args: any[]) => Object) & { typeId: URL; }; readonly typeId: URL; readonly values: Record<string, string>; }
| { readonly type: "inbox"; readonly identifier: undefined; readonly handle: undefined; }
| { readonly type: "inbox"; readonly identifier: string; readonly handle: string; }
| { readonly type: "outbox"; readonly identifier: string; readonly handle: string; }
| { readonly type: "following"; readonly identifier: string; readonly handle: string; }
| { readonly type: "followers"; readonly identifier: string; readonly handle: string; }
| { readonly type: "liked"; readonly identifier: string; readonly handle: string; }
| { readonly type: "featured"; readonly identifier: string; readonly handle: string; }
| { readonly type: "featuredTags"; readonly identifier: string; readonly handle: string; }