Represents properties an object having a content type should have.

interface MockContent {
    blob: BlobType[];
    changeDelayMs: number;
    editing: boolean[];
    embeddable: boolean;
    id: number;
    initialDelayMs: number;
    linkable: boolean;
    name: string[];
    readable: boolean[];
    type: string;
}

Hierarchy (view full)

Properties

blob: BlobType[]
changeDelayMs: number

The delay between each change. 0 or below will do changes only once and then end (with change delay of 1 ms in this case).

editing: boolean[]
embeddable: boolean

If the content may be embedded.

id: number

Numeric ID of the content.

initialDelayMs: number

Defines the initial delay to load a content or a property value.

linkable: boolean

If the content may be referenced in internal links.

name: string[]
readable: boolean[]
type: string

The content-type of the content.