The Redux representation of a single graph among a list of graph info

Each includes 2 pieces of information

  1. Graph ID
  2. Display name of that graph
interface GraphMetaData {
    id: number;
    name: string;
}

Properties

Properties

id: number
name: string

Generated using TypeDoc