Created
May 14, 2020 18:16
-
-
Save baranovxyz/930c4e31aed3004d7f8490a27407b4aa 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 Column { | |
_id: string; // MongoDB id field | |
type: 'string'; // yes, it is literally 'string' | |
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