activity-kit-core/packages/activitypub-core-types/lib/activitypub/Core/Entity.d.ts

8 lines
216 B
TypeScript

/// <reference types="node" />
import { AllTypes } from '../util/const';
export declare type BaseEntity = {
'@context'?: URL | URL[] | unknown;
id?: URL | null;
type: typeof AllTypes[keyof typeof AllTypes];
};