@atlaskit/json-ld-types
Version:
A set of types for the Atlassian Object Vocabulary
13 lines (12 loc) • 364 B
TypeScript
import type { JsonLd } from './jsonld';
interface JsonLdDefaults {
meta: {
granted: JsonLd.Meta.Granted;
notFound: JsonLd.Meta.NotFound;
permissionDenied: JsonLd.Meta.PermissionDenied;
public: JsonLd.Meta.Public;
unauthorized: JsonLd.Meta.Unauthorized;
};
}
export declare const defaults: JsonLdDefaults;
export {};