Last active
May 11, 2020 20:51
-
-
Save baranovxyz/567df0bc395d9c8e53853d0bdbdc0786 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface ColumnOfStrings { | |
_id: string; // MongoDB id field | |
type: 'string'; // yes, it is literal 'string' for column of strings | |
values: (string | null)[]; // an array, each element is either string or null | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment