@doctadevs/types
Advanced tools
Comparing version 0.0.10 to 0.0.11
@@ -1,9 +0,4 @@ | ||
export declare type Student = { | ||
id: string; | ||
firstName: string; | ||
lastName: string; | ||
email: string; | ||
gender: string; | ||
documentNumber: string; | ||
import { Person } from './person'; | ||
export declare type Student = Person & { | ||
dateJoined: Date; | ||
}; |
{ | ||
"name": "@doctadevs/types", | ||
"version": "0.0.10", | ||
"version": "0.0.11", | ||
"main": "dist/index.js", | ||
@@ -16,3 +16,3 @@ "types": "dist/index.d.ts", | ||
"scripts": { | ||
"dist": "npm version patch; git push; npm publish --access public", | ||
"dist": "tsc; npm version patch; git push; npm publish --access public", | ||
"build": "rm -rf dist; tsc -b", | ||
@@ -19,0 +19,0 @@ "prepublishOnly": "npm run build" |
@@ -1,9 +0,5 @@ | ||
export type Student = { | ||
id: string; | ||
firstName: string; | ||
lastName: string; | ||
email: string; | ||
gender: string; | ||
documentNumber: string; | ||
import { Person } from './person'; | ||
export type Student = Person & { | ||
dateJoined: Date; | ||
}; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
14718
67
350