generated from CodrJS/ts-jsr-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
DylanBulmer
committed
Jul 21, 2024
1 parent
7e745cf
commit 85f512f
Showing
19 changed files
with
123 additions
and
83 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,7 +49,7 @@ import { User } from "jsr:@codr/models@^1"; | |
|
||
```bash | ||
# Clone the repo | ||
git clone [email protected]:CodrJS/models.git | ||
git clone [email protected]:CodrJS/jsr-models.git | ||
|
||
# Cache deno dependencies | ||
deno cache ./mod.ts | ||
|
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,26 @@ | ||
/** | ||
* @module | ||
* | ||
* This module consists of class entities used to collect, transform, and | ||
* process data in Codr. | ||
* | ||
* @example | ||
* ```ts | ||
* import { Organization } from "@codr/models"; | ||
* import { ObjectId } from "bson"; | ||
* | ||
* const org = new Organization ({ | ||
* name: "Demo Organization", | ||
* domains: ["localhost:3000"], | ||
* flags: { | ||
* isActive: true, | ||
* isDeleted: false, | ||
* isDemo: true, | ||
* }, | ||
* slug: "demo", | ||
* createdBy: new ObjectId(), | ||
* }) | ||
* ``` | ||
*/ | ||
|
||
export * from "./src/mod.ts"; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,2 @@ | ||
/** | ||
* @module | ||
* | ||
* This module consists of class entities used to collect, transform, and | ||
* process data in Codr. | ||
* | ||
* @example | ||
* ```ts | ||
* import { Organization } from "@codr/models"; | ||
* import { ObjectId } from "bson"; | ||
* | ||
* const org = new Organization ({ | ||
* name: "Demo Organization", | ||
* domains: ["localhost:3000"], | ||
* flags: { | ||
* isActive: true, | ||
* isDeleted: false, | ||
* isDemo: true, | ||
* }, | ||
* slug: "demo", | ||
* createdBy: new ObjectId(), | ||
* }) | ||
* ``` | ||
*/ | ||
|
||
// export * as Types from "./types/mod.ts"; | ||
export * from "./models/mod.ts"; |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.