Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@doctadevs/types

Package Overview
Dependencies
Maintainers
1
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@doctadevs/types - npm Package Compare versions

Comparing version 0.0.10 to 0.0.11

dist/types/person.d.ts

9

dist/types/student.d.ts

@@ -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;
};
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc