interface SingularData {
    group(): ElementGroup;
    id(): string;
    isEdge(): this is EdgeSingular;
    isNode(): this is NodeSingular;
    json(): string;
    removeScratch(namespace: string): this;
    scratch(namespace?: string): any;
    scratch(namespace: string, value: any): this;
}

Hierarchy (view full)

Methods