/** * Outcomes of this test * @typedef {"cantTell"|"passed"|"failed"|"inapplicable"} Outcome */ /** * Targets of this Test. Derived from Input. * @typedef Targets * @property {Response} outboxPostResponse * @property {URL} outboxPostLocation * @property {Response} outboxPostLocationResponse */ export const simpleNote: { readonly type: "Note"; readonly "@context": readonly ["https://www.w3.org/ns/activitystreams"]; }; export function run(input: Input): Promise>; export default testCase; /** * Input to this test */ export type Input = { outbox: URL; authorization?: string | undefined; }; /** * Outcomes of this test */ export type Outcome = "cantTell" | "passed" | "failed" | "inapplicable"; /** * Targets of this Test. Derived from Input. */ export type Targets = { outboxPostResponse: Response; outboxPostLocation: URL; outboxPostLocationResponse: Response; }; /** * @type {import("../../test-utils").TestCase} */ declare const testCase: import("../../test-utils").TestCase; //# sourceMappingURL=object-without-create-wrapping-using-get-location.d.ts.map