Skip to content

gi-nx


gi-nx / GiraffeStateBlocks

ts
type GiraffeStateBlocks = {
  blocks: Record<string, {
     description?: string;
     features: (
        | PreStackedPoint
        | PreStackedLineString
       | PreStackedPolygon<Record<string, any>>)[];
     id: BlockId;
     keyWords?: string[];
     name: string;
     properties?: Record<string, any>;
  }>;
};

Properties

PropertyType
blocksRecord<string, { description?: string; features: ( | PreStackedPoint | PreStackedLineString | PreStackedPolygon<Record<string, any>>)[]; id: BlockId; keyWords?: string[]; name: string; properties?: Record<string, any>; }>