Skip to content

Instantly share code, notes, and snippets.

@baranovxyz
Last active May 11, 2020 20:51
Show Gist options
  • Save baranovxyz/567df0bc395d9c8e53853d0bdbdc0786 to your computer and use it in GitHub Desktop.
Save baranovxyz/567df0bc395d9c8e53853d0bdbdc0786 to your computer and use it in GitHub Desktop.
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