import type { ShapeType } from "@ldo/ldo"; import { solidSchema } from "./solid.schema"; import { solidContext } from "./solid.context"; import type { Container, Resource, ProfileWithStorage } from "./solid.typings"; /** * ============================================================================= * LDO ShapeTypes solid * ============================================================================= */ /** * Container ShapeType */ export const ContainerShapeType: ShapeType = { schema: solidSchema, shape: "http://www.w3.org/ns/lddps#Container", context: solidContext, }; /** * Resource ShapeType */ export const ResourceShapeType: ShapeType = { schema: solidSchema, shape: "http://www.w3.org/ns/lddps#Resource", context: solidContext, }; /** * ProfileWithStorage ShapeType */ export const ProfileWithStorageShapeType: ShapeType = { schema: solidSchema, shape: "http://www.w3.org/ns/lddps#ProfileWithStorage", context: solidContext, };