Skip to content

Instantly share code, notes, and snippets.

View jschlieber's full-sized avatar

Jürgen Schlieber jschlieber

View GitHub Profile
@jschlieber
jschlieber / beers.ts
Last active January 19, 2017 18:43
Secure Meteor collections
import {Mongo} from 'meteor/mongo';
import createCollection from '../util/createCollection';
export interface Beer {
_id: string,
name: string,
variety: string;
strength: number;
}