interface GraphTypeGuard<D, S> {
    isDataCompatible(data: BaseGraph.Data): data is D;
    isScratchDataCompatible(sData: BaseGraph.ScratchData): sData is S;
}

Type Parameters

Methods