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

9 lines
209 B
TypeScript

import { AllTypes } from '../util/const';
export type BaseEntity = {
'@context'?: URL | URL[] | unknown;
// Activity Pub allows null.
id?: URL | null;
type: typeof AllTypes[keyof typeof AllTypes];
};