Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { Component } from './component.js';
import { Entity } from '../entity.js';
export class ComponentVersion extends Entity {
protected static resourceName = 'component_versions';
protected static singularName = 'componentVersion';
protected static pluralName = 'componentVersions';
@ComponentVersion.property({type: Date})
public archived?: Date | null;
@ComponentVersion.property({type: Date})
public created?: Date | null;
@ComponentVersion.property()
public id?: number;
@ComponentVersion.property()
public body?: string;
@ComponentVersion.property()
public description?: string;
@ComponentVersion.property()
public isClassBased?: boolean;
@ComponentVersion.property({type: 'Component'})
public component?: Component;
}
|