1
1
mirror of https://github.com/github/semantic.git synced 2024-12-28 09:21:35 +03:00

Stub in a JSON datatype.

This commit is contained in:
Rob Rix 2016-02-25 14:09:11 -07:00
parent bce5430697
commit 561d625538

View File

@ -1 +1,10 @@
module Renderer.JSON where
module Renderer.JSON (
JSON (JSON, rows)
) where
import Diff
import Row
import Source
import Renderer.Split
data JSON = JSON { rows :: [Row (SplitDiff (Source Char) Info)] }