Welcome to mirror list, hosted at ThFree Co, Russian Federation.

frame.js « utils « flexibleLayout « plugins « src - github.com/nasa/openmct.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a444a20eabfabcc7adac3b2fbacd8cb7d67c896e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import uuid from 'uuid';

class Frame {
    constructor(domainObjectIdentifier, size) {
        this.id = uuid();
        this.domainObjectIdentifier = domainObjectIdentifier;
        this.size = size;

        this.noFrame = false;
    }
}

export default Frame;