import { Schema } from './schema'; import { EntityData } from '../entity-data'; import { RotationSchema, RotationSchemaDecoration } from '@gedit/utils'; export { RotationSchema, RotationSchemaDecoration, }; export class RotationData extends EntityData { static type = 'RotationData'; getDefaultData(): RotationSchema { return Schema.createDefault(RotationSchemaDecoration); } }