interface IPostContentUserData {
    data: any;
    invalidate: 0 | 1;
    preload: 0 | 1;
}

Properties

data: any

The actual data. 0 if the data should be deleted.

invalidate: 0 | 1

Indicates that data should be invalidated when content changes.

preload: 0 | 1

Indicates that data should be loaded when content is loaded.