@pebula/goosetyped
v1.0.1
Published
[](https://pebula.github.io/node/goosetyped/)  [
export class Customer extends GtModel() {
@GtColumn()
name: string;
@GtColumn()
age: number;
}This is very powerful when working in TypeScript as no sorcery is required to properly export your model class types.
Not an ORM
GooseTyped is not an ORM by itself and does not provide additional functionality on-top of mongoose.
It is a wrapper around mongoose which provide modern tools to define and and configure the DB schema which is
more adapted to TypeScript and modern ORM libraries.
